"mfujisaw" <[EMAIL PROTECTED]> wrote in
message
news:[EMAIL PROTECTED]
> I am developping allication with SQLite3 functions.
> When I will use sqlite3_bind and wild card for some SQL, it wouldn't
> work well.
>
> 1. SELECT ? FROM records WHERE age=30
> I want to set some table name into ? every time.

A parameter can appear in the statement only where a literal could 
legally appear. E.g., you could do

SELECT * FROM records WHERE age=?

Igor Tandetnik 



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

Reply via email to