SQLite 3 support has been added. For details see: http://www.newlisp.org/index.cgi?page=News
Lutz
SQLite 3 support
BLOB handling is prepared but not finished yet. If you add the line:
(import library "sqlite3_column_blob" "cdecl")
in the section where the import are made, you will get BLOBs handled like 'C' strings, this means the blob received will stop at the first binary zero encountered. To receive BLOBs with embedded zeros a little more work has to be done in sqlite3.lsp. I will put it on my list of things to do.
Lutz
(import library "sqlite3_column_blob" "cdecl")
in the section where the import are made, you will get BLOBs handled like 'C' strings, this means the blob received will stop at the first binary zero encountered. To receive BLOBs with embedded zeros a little more work has to be done in sqlite3.lsp. I will put it on my list of things to do.
Lutz