I have a table with a not null column...

Some of the values are empty string and some have more lengthy values :-)

I prepare a statement ("Select col2 from table where column = ?") and then use 
bind to that parameter what are the parameters ?

From slq browser I can "Select col2 from table where column = "" and get the 
empty string rows - so I know they are there
sqlite3_bind_text(stmt, 1, "", 0, SQLITE_ STATIC) ?

sqlite3_bind_text(stmt, 1, "", -1, SQLITE_ STATIC) ?

I'm stuck
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to