blob: 79ed08c0d71f847bcc733c0d7a200da733271ae2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;
}
|