erlang-sqlite3 icon indicating copy to clipboard operation
erlang-sqlite3 copied to clipboard

Sqlite gen_server port for Erlang. Creates, reads and writes to sqlite database.

Results 3 erlang-sqlite3 issues
Sort by recently updated
recently updated
newest added

``` sqlite> .tables Asetukset Hyppääjät Lentäjät Pokat Tarvikkeet Eurot Hypyt Luokat Pondimaksut Tyypit Hinnat Koneet Maksut Stuff Varjot Hyppymestarit Korvaukset Ostokset Suoritukset ``` But: ``` ([email protected])2> sqlite3:list_tables(hlu). ['Asetukset','Eurot','Hinnat','Hyppääjät', 'Hyppymestarit','Hypyt','Koneet','Korvaukset','Lentäjät', 'Luokat','Maksut','Ostokset','Pokat','Pondimaksut','Stuff',...

Often it is necessary to close db and upload it somewhere. It would be good if this library allowed possibility to dump contents of database.

Hello Sqlite3 expects the following syntax when when checking for NULL: SELECT 1 FROM items WHERE col is NULL; The query where "col = NULL" ( with equal sign )...