Files
linux-packaging-mono/mcs/class/Mono.Data.Sqlite/Test/test.sql

9 lines
207 B
MySQL
Raw Normal View History

create table test (
id int NOT NULL PRIMARY KEY,
name varchar (20)
);
insert into test values (1, "mono test 1");
insert into test values (2, "mono test 2");
insert into test values (3, "mono test 3");