Simon Slavin <[email protected]> wrote: > Is SQLite case-sensitive when parsing for NULL ? Does it identify things > like 'nUlL' as NULL ? Can I rely on this behaviour in > future versions ?
NULL as a keyword is parsed case-insensitively.'nUlL' however is not NULL, but a literal representing a 4-character string. -- Igor Tandetnik _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

