sqlite embedded sql server for ldmud 3.3

this is a first working version

Needed Libraries

Known Issues

Progress

Planed Features

How It Works

Included EFUNS

This example uses the testmaster you find in this directory.
// opens/creates the file /myfirst.db 
> slopen myfirst.db 

// create a table with 3 columns
> sl create table firsttable ("column 1","column 2","column 3") 
data: 0  

// ups.. i made an error:
> sl insert into firsttable (2,5,9)
*sl_exec: near "2": syntax error

// insert some data
> sl insert into firsttable values (2,5,9)
data: 0    
> sl insert into firsttable values ("this","is","data")
data: 0    

// get the data back
> sl select * from firsttable
data: ({ /* #1, size: 2 */
  ({ /* #2, size: 3 */
    "2",
    "5",
    "9"
  }),
  ({ /* #3, size: 3 */
    "this",
    "is",
    "data"
  })
})
Icon  Name                    Last modified      Size  Description
[DIR] Parent Directory - [   ] pkg_sqlite.diff 28-Mar-2004 17:05 11K [   ] test_master.c 14-Aug-2003 23:02 8.7K
Apache/2.0.50 (Unix) mod_ssl/2.0.50 OpenSSL/0.9.6a DAV/2 PHP/4.3.7 SVN/1.0.5 Server at ff.mud.de Port 80