Changes

Jump to: navigation, search

SQLite Adapter Research

1,065 bytes added, 10:55, 21 September 2011
Created page with '[NexJ Express SQLite] ==Overview== ==Data Types== http://www.sqlite.org/datatype3.html Most SQL database engines (every SQL database engine other than SQLite, as far as we know) …'
[NexJ Express SQLite]
==Overview==
==Data Types==
http://www.sqlite.org/datatype3.html
Most SQL database engines (every SQL database engine other than SQLite, as far as we know) uses static, rigid typing. With static typing, the datatype of a value is determined by its container - the particular column in which the value is stored.

SQLite uses a more general dynamic type system. In SQLite, the datatype of a value is associated with the value itself, not with its container. The dynamic type system of SQLite is backwards compatible with the more common static type systems of other database engines in the sense that SQL statement that work on statically typed databases should work the same way in SQLite. However, the dynamic typing in SQLite allows it to do things which are not possible in traditional rigidly typed databases.

==Limits==
{| border="1" cellpadding="4" cellspacing="2" style="border: 1px solid black;border-collapse:collapse;"
|-
! Feature
! Limit
|-
|Number of columns
|
|-
|Number of rows
|
|-
|Page size
|
|-
|
|
|}
Max number of columns
1
edit

Navigation menu