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

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

Replies are listed 'Best First'.
Re^5: MySQL INSERT in Perl
by baperl (Sexton) on Aug 05, 2011 at 12:28 UTC
    sounds good...thanks!