refactoring
[mono.git] / mcs / class / Mono.Data.SqliteClient / Test / test.sql
1 create table test (
2   id int NOT NULL PRIMARY KEY,
3   name varchar (20)
4 );
5
6 insert into test values (1, "mono test 1");
7 insert into test values (2, "mono test 2");
8 insert into test values (3, "mono test 3");