gaulthiergain-tools/testfiles/test_sqlite_small.json
Gaulthier Gain a7a3a7b140 Main update
2022-09-09 11:44:12 +02:00

21 lines
No EOL
660 B
JSON

{
"typeTest": "stdin",
"timeMsCommand": 1000,
"listCommands": [
"create table tbl1(one varchar(10), two smallint);",
"insert into tbl1 values('hello!',10);",
"insert into tbl1 values('goodbye', 20);",
"SELECT * FROM tbl1;",
"CREATE TABLE tbl2 (f1 varchar(30) primary key,f2 text,f3 real);",
"insert into tbl2 values(10, 'hello!',10);",
"insert into tbl2 values(20, 'hello!',20);",
"UPDATE tbl2 SET f2='salut' WHERE f2='hello!';",
"select * from tbl1;",
"select * from tbl2;",
"DELETE FROM tbl2 WHERE f2='salut';",
"DELETE FROM tbl2 WHERE f2='hello';",
".help",
"DROP TABLE tbl2;",
".quit"
]
}