Perepared Sql Statement

Hi,

I am looking for example of using Prepared SQL Statement to do inserting record from a listbox.
I have checked in Xojo Example project, but its not the one that I am looking for.

I have used SQL statement, but I am unhappy with the POST speed, its way too slow.

will this Prepared Sql Statement method will work with listbox,?

thanks
arief

if you are doing things like:

dbh.ExecuteSQL ("insert into mytable (x, y) values (?,?)", val1, val2)

then you are already using prepared statements.

Show some code.