what is the correct way to query for NULL-values? I use SQLite version 3.2.0

try the following:

    ... WHERE field IS NULL;
or
    ... WHERE field IS NOT NULL;

Marcel



Reply via email to