up vote 0 down vote favorite
share [g+] share [fb]

Can anyone provide syntax to create a table trigger preferably with DBI's do() method. It doesn't seem to like me putting everything on one line. Not sure what i'm doing wrong. Here's what I've got:

$dbh->do("CREATE TABLE image(img_id integer primary key, md5sum text, path text, name text, date DATE)");
$dbh->do("CREATE TRIGGER insert_img_date AFTER  INSERT ON image BEGIN UPDATE image SET date = DATETIME('NOW') END");
link|improve this question

60% accept rate
feedback

1 Answer

Your second SQL statement is not valid syntax even if you try it from console.
Here's the same one with some fixes(now it works):

CREATE TRIGGER insert_img_date AFTER  INSERT ON image BEGIN UPDATE image SET date = DATETIME('NOW'); END ;
link|improve this answer
2  
Man that was dumb. Thank you very much. – vicTROLLA Sep 30 '09 at 8:15
The only dumb question is the one you didn't ask and chose to suffer in silence instead... – Chris Huang-Leaver Sep 30 '09 at 10:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.