The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
[SQL]
Insert=INSERT INTO example (field1,field2,field3) VALUES (?,?,?)
CountAll=SELECT count(*) FROM example
CountByNum=SELECT count(*) AS count FROM example WHERE field2=?
SelectAll=SELECT * FROM example
SelectByID=SELECT field3 FROM example WHERE id=?