On 27 Oct 2012, at 7:17pm, Frank Chang <frankchan...@gmail.com> wrote:

>   Good afternoon, Is it possible to differentiate between sqlite database
> empty char* strings and DBNULL char* strings? If so, what is the est way to
> do that?

I do not know what you mean by DBNULL.  SQLite has a NULL type of variable.  
But it has no characters in it, it is always null.

You can use the function typeof(value) to find out the type of a value:

<http://www.sqlite.org/lang_corefunc.html>

"The typeof(X) function returns a string that indicates the datatype of the 
expression X: "null", "integer", "real", "text", or "blob"."

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

Reply via email to