in reply to Re^7: regexp question
in thread regexp question

Why do you insist on equating prepared statements and placeholders? You even went to the trouble of highlighting the error?!

Both Perl and Java have prepared statements and placeholders.

Placeholder v my $sql = "INSERT INTO my_table (col_string) VALUES(?)"; my $sth = $dbh->prepare($sql); ^ Prepared statement
Placeholder v String sql = "INSERT INTO my_table (col_string) VALUES(?)"; PreparedStatement pstmt = connection.prepareStatement(sql); ^ Prepared statement

Replies are listed 'Best First'.
Re^9: regexp question
by Nodonomy (Novice) on Feb 06, 2011 at 21:09 UTC
    Ah yes. Thanks again.