hsSqlite3-0.1: src/hs_sqlite3_test.sql
CREATE TABLE IF NOT EXISTS test01 ( a INT NOT NULL, b INT NOT NULL, c DOUBLE NOT NULL ); INSERT INTO test01 VALUES(1,2,3.0); INSERT INTO test01 VALUES(2,3,4.0); INSERT INTO test01 VALUES(3,4,5.0);
CREATE TABLE IF NOT EXISTS test01 ( a INT NOT NULL, b INT NOT NULL, c DOUBLE NOT NULL ); INSERT INTO test01 VALUES(1,2,3.0); INSERT INTO test01 VALUES(2,3,4.0); INSERT INTO test01 VALUES(3,4,5.0);