in reply to Re^2: MySQL INSERT in Perl
in thread MySQL INSERT in Perl

thx superdoc, I'm not sure I fully understand how that will work... also, it seems like I should replace prepare/execute with do()?

Replies are listed 'Best First'.
Re^4: MySQL INSERT in Perl
by happy.barney (Friar) on Aug 05, 2011 at 09:17 UTC

    SQL::Abstract generates (simple) sql statement from perl data structures.

    Yes, you can replace prepare/execute everywhere you don't care about returned rows or rows are not returned, like insert/update/delete without returning clause. See DBI#do

      sounds good...thanks!