aboutsummaryrefslogtreecommitdiff
path: root/schema/driver.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-02-25 12:07:33 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-02-25 12:07:33 +0200
commit2ef165437ce47f50110a9b230f302c5cd5fde1d4 (patch)
treeb1b7c14b9b264e8571ec37c3098c8763ef655ca2 /schema/driver.cxx
parent10d9fed7123cdc7fd9287d2cf6fea8c40c2402a0 (diff)
Add support for examples in subdirectories
Move the schema example to schema/custom.
Diffstat (limited to 'schema/driver.cxx')
-rw-r--r--schema/driver.cxx119
1 files changed, 0 insertions, 119 deletions
diff --git a/schema/driver.cxx b/schema/driver.cxx
deleted file mode 100644
index 3f36f03..0000000
--- a/schema/driver.cxx
+++ /dev/null
@@ -1,119 +0,0 @@
-// file : schema/driver.cxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : not copyrighted - public domain
-
-#include <memory> // std::auto_ptr
-#include <iostream>
-
-#include <odb/database.hxx>
-#include <odb/session.hxx>
-#include <odb/transaction.hxx>
-
-#include "database.hxx" // create_database
-
-#include "employee.hxx"
-#include "employee-odb.hxx"
-
-using namespace std;
-using namespace odb::core;
-
-int
-main (int argc, char* argv[])
-{
- try
- {
- auto_ptr<database> db (create_database (argc, argv));
-
- // Create the database schema.
- //
- {
- transaction t (db->begin ());
-
- // Try to drop the tables if they exist and ignore the error
- // if they don't.
- //
- try
- {
- db->execute ("DROP TABLE Employer");
- db->execute ("DROP TABLE Employee");
- db->execute ("DROP TABLE EmployeeDegree");
- }
- catch (const odb::exception&)
- {
- }
-
- db->execute (
- "CREATE TABLE Employer ("
- "name VARCHAR (255) NOT NULL PRIMARY KEY)");
-
- db->execute (
- "CREATE TABLE Employee ("
- "ssn INTEGER UNSIGNED NOT NULL PRIMARY KEY,"
- "first_name VARCHAR (255) NOT NULL,"
- "last_name VARCHAR (255) NOT NULL,"
- "employer VARCHAR (255) NOT NULL REFERENCES Employer (name))");
-
- db->execute (
- "CREATE TABLE EmployeeDegree ("
- "ssn INTEGER UNSIGNED NOT NULL REFERENCES Employee (ssn),"
- "degree VARCHAR (255) NOT NULL)");
-
- t.commit ();
- }
-
- // Create a few persistent objects.
- //
- {
- shared_ptr<employer> st (new employer ("Simple Tech Ltd"));
-
- shared_ptr<employee> john (new employee (1, "John", "Doe", st));
- shared_ptr<employee> jane (new employee (2, "Jane", "Doe", st));
-
- john->degrees ().push_back ("BA");
- john->degrees ().push_back ("MSc");
- jane->degrees ().push_back ("Ph.D.");
-
- transaction t (db->begin ());
-
- db->persist (st);
- db->persist (john);
- db->persist (jane);
-
- t.commit ();
- }
-
- // Load employees with "Doe" as the last name and print what we've got.
- //
- {
- typedef odb::query<employee> query;
- typedef odb::result<employee> result;
-
- session s;
- transaction t (db->begin ());
-
- result r (db->query<employee> (query::name::last == "Doe"));
-
- for (result::iterator i (r.begin ()); i != r.end (); ++i)
- {
- cout << i->name ().first () << " " << i->name ().last () << endl
- << " employer: " << i->employer ()->name () << endl;
-
- for (degrees::iterator j (i->degrees ().begin ());
- j != i->degrees ().end ();
- ++j)
- {
- cout << " degree: " << *j << endl;
- }
-
- cout << endl;
- }
-
- t.commit ();
- }
- }
- catch (const odb::exception& e)
- {
- cerr << e.what () << endl;
- return 1;
- }
-}