Hi all,

If I prepare a statement using sqlite3_prepare_v2() and then bind parameters to 
it using the sqlite3_bind_* functions, is there then a way to get the human 
readable form of the statement?

For example, if I have:

select * from MyTable where IntColumn = ? and TextColumn = ?

to which I bind parameters:

(int) 5
(char *) Mickey

How can I get out the human readable version?:

select * from MyTable where IntColumn = 5 and TextColumn = 'Mickey'


Thanks,
Tom
BareFeetWare

 --
Comparison of SQLite GUI tools:
http://www.barefeetware.com/sqlite/compare/?ml

_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to