From 274adf39c78bf9050ed34815a3472e9e418dd165 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Thu, 24 Sep 2015 03:04:15 +0100 Subject: ODBC mocking and tests from Project2 --- libodbcpp/unittests/odbcschema.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 libodbcpp/unittests/odbcschema.sql (limited to 'libodbcpp/unittests/odbcschema.sql') diff --git a/libodbcpp/unittests/odbcschema.sql b/libodbcpp/unittests/odbcschema.sql new file mode 100644 index 0000000..96848eb --- /dev/null +++ b/libodbcpp/unittests/odbcschema.sql @@ -0,0 +1,8 @@ +CREATE TABLE test( + id int, + fl numeric(5,2), + string text, + boolean bool, + dt timestamp without time zone, + ts interval); +INSERT INTO test VALUES(4, 123.45, 'some text', true, '2015-04-27 23:06:03', '1 day 14:13:12'); -- cgit v1.2.3