< SQLite
Egy parancssoros kliens.
Leírás:
sqlite
vagy:
sqlite3
sqlite3 valami.sqlite
sqlite3 valami.db
.quit
.exit
Listázás:
.tables
Szerkezet:
.schema employees
create table employee ( id integer not null primary key autoincrement, name text, city text, salary real );
Dokumentáció:
SELECT * FROM emplyoees;