in reply to parameterised query using database functions

my $querystrCon = " UPDATE table SET Details=CONCAT(Details, ?) WHERE id=? "; ->execute("$i lines inserted", $RunID)

Replies are listed 'Best First'.
Re^2: parameterised query using database functions
by Anonymous Monk on Nov 24, 2010 at 17:54 UTC
    thanks. didn;t think you could do that :)
      Which part? Use placeholders (question marks)? They are documented under the header "Placeholders and Bind Values".