aboutsummaryrefslogtreecommitdiff
path: root/pgsql/native/driver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'pgsql/native/driver.cxx')
-rw-r--r--pgsql/native/driver.cxx22
1 files changed, 22 insertions, 0 deletions
diff --git a/pgsql/native/driver.cxx b/pgsql/native/driver.cxx
new file mode 100644
index 0000000..79ed08c
--- /dev/null
+++ b/pgsql/native/driver.cxx
@@ -0,0 +1,22 @@
+// file : pgsql/native/driver.cxx
+// author : Constantin Michael <constantin@codesynthesis.com>
+// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+// Test native SQL execution.
+//
+
+#include <memory> // std::auto_ptr
+#include <cassert>
+#include <iostream>
+
+#include <odb/pgsql/database.hxx>
+
+using namespace std;
+
+int
+main ()
+{
+ return 0;
+}
+