Oracle doesn't have a native boolean type. You have to use INTEGER and interpret it.
MySQL doesn't have a boolean type (it's just a synonym for TINYINT). SQL Server doesn't have a boolean type. You have to use BIT and interpret it. ----- Original Message ----- From: "Mark Hamburg" <[email protected]> To: "General Discussion of SQLite Database" <[email protected]> Sent: Monday, September 07, 2009 10:27 AM Subject: Re: [sqlite] Booleans in SQLite > The real argument for adding boolean support is not about space but > about compatibility with dynamic languages with a boolean type that > are exploiting SQLite's dynamic typing of values. Without a boolean > type in SQLite, a glue layer has to guess whether a 0 means zero or > false or a "NO" means the string "NO" or false or... > > Mark > > _______________________________________________ > sqlite-users mailing list > [email protected] > http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

