vyzkouseni databaze:
$ sqlite test.db
SQLite version 2.8.17
Enter ".help" for instructions
sqlite> create table tabulka01 (one varchar(10), two smallint);
sqlite> insert into tabulka01 values ('ahoj',10);
sqlite> insert into tabulka01 values ('svete',20);
sqlite> select * from tabulka01;
ahoj|10
svete|20
sqlite>.quit
$
Poslední změna: 04.09.2009 09:34:32