On 19 Jul 2019, at 9:15pm, Gilles Pérez <[email protected]> wrote:
> Is it possible in Tcl to specify I want a boolean?
You don't want a boolean. SQLite doesn't understand booleans. You want
integers. Do this
Constants:
DB_FALSE = 0, DB_TRUE = 1
I would suggest you don't use names like SQLITE_FALSE because the assumption
would be that those are defined in a SQLITE library, but you can use other
names.
_______________________________________________
sqlite-users mailing list
[email protected]
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users