On 9/19/16, Robert E. Pappenhagen <[email protected]> wrote: > 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) ?
They should both work. The first might be very slightly faster by avoiding a call to strlen(). -- D. Richard Hipp [email protected] _______________________________________________ sqlite-users mailing list [email protected] http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

