guyot jerome wrote:
Hi,
       I would like to realize the dialect between SQLite and Hibernate but
I need to know the correspondence between the SQLite types and the general
types (e.g.:How a boolean type is represented under SQLite).

       What is that somebody can give myself this piece of information
because I did not find in doc. SQLite.

http://sqlite.org/datatype3.html

There is no Boolean data type - you can use a normal integer, interpreting 0 as False and anything else as True, just like the C language. For compatibility, SQLite accepts the BOOLEAN keyword in column creation as an alias for INTEGER, but since SQLite uses manifest typing you will have to use zero / non-zero at the application level.

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

Reply via email to