summaryrefslogtreecommitdiff
path: root/libsqlitepp/unittests/sqliteschema.sql
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2015-09-24 03:05:12 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2015-09-24 03:06:07 +0100
commit35382065da97e8e98c3883caebc0b8f51aa33e90 (patch)
tree5b53d246def27e0f588ab0d02a91532e0c913908 /libsqlitepp/unittests/sqliteschema.sql
parentConnector compatibility fix (diff)
downloadlibdbpp-sqlite-35382065da97e8e98c3883caebc0b8f51aa33e90.tar.bz2
libdbpp-sqlite-35382065da97e8e98c3883caebc0b8f51aa33e90.tar.xz
libdbpp-sqlite-35382065da97e8e98c3883caebc0b8f51aa33e90.zip
SQLite mocking and tests from Project2
Diffstat (limited to 'libsqlitepp/unittests/sqliteschema.sql')
-rw-r--r--libsqlitepp/unittests/sqliteschema.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/libsqlitepp/unittests/sqliteschema.sql b/libsqlitepp/unittests/sqliteschema.sql
new file mode 100644
index 0000000..393d21a
--- /dev/null
+++ b/libsqlitepp/unittests/sqliteschema.sql
@@ -0,0 +1,6 @@
+CREATE TABLE test(
+ id int,
+ fl numeric(5,2),
+ string text);
+INSERT INTO test VALUES(4, 123.45, 'some text');
+