Quote (John @ Oct. 23 2003,19:25) |
Been thinking about sqlite, it has a very strong possibility of getting in. |
Quote (roberts @ Oct. 24 2003,12:41) |
I have been following the SQLite project from its inception. It is basically a single C program that provides a good subset of SQL. I have used it in some embedded devices that I made. There is no server and client sides, just a single SQL engine that creates SQL databases. The one I have used is 733kb. Has good import and export too. |
Code Sample |
create table FOO( BAR, integer, ... ); ... error near "(" |