From 01c9e7c9cc51ad1795de6c556d196d46b931402b Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 23 Sep 2010 11:04:36 +0200 Subject: Add query example --- query/driver.cxx | 183 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 183 insertions(+) create mode 100644 query/driver.cxx (limited to 'query/driver.cxx') diff --git a/query/driver.cxx b/query/driver.cxx new file mode 100644 index 0000000..15f6129 --- /dev/null +++ b/query/driver.cxx @@ -0,0 +1,183 @@ +// file : query/driver.cxx +// author : Boris Kolpackov +// copyright : not copyrighted - public domain + +#include +#include // std::auto_ptr +#include + +#include +#include + +#include "database.hxx" // create_database + +#include "person.hxx" +#include "person-odb.hxx" + +using namespace std; + +using odb::database; +using odb::transaction; + +typedef odb::query query; +typedef odb::result result; + +static void +print (result& r) +{ + for (result::iterator i (r.begin ()); i != r.end (); ++i) + { + cout << i->first () << " " << i->last () << " " << i->age () << endl; + } + + cout << endl; +} + +int +main (int argc, char* argv[]) +{ + try + { + auto_ptr db (create_database (argc, argv)); + + { + typedef vector people; + + people p; + + p.push_back (person ("John", "Doe", 21)); + p.push_back (person ("John", "Smith", 22)); + p.push_back (person ("Jack", "Johnson", 31)); + p.push_back (person ("John", "Jackson", 32)); + p.push_back (person ("Jane", "Doe", 23)); + p.push_back (person ("Jane", "Smith", 24)); + + transaction t (db->begin_transaction ()); + + for (people::iterator i (p.begin ()); i != p.end (); ++i) + db->persist (*i); + + t.commit (); + } + + // A simple query and result handling. + // + { + transaction t (db->begin_transaction ()); + + result r (db->query (query::age < 30)); + + for (result::iterator i (r.begin ()); i != r.end (); ++i) + { + cout << i->first () << " " << i->last () << " " << i->age () << endl; + } + + // Alternatively we can get a dynamically-allocated object. + // + /* + for (result::iterator i (r.begin ()); i != r.end (); ++i) + { + auto_ptr p (i.load ()); + cout << p->first () << " " << p->last () << " " << p->age () << endl; + } + */ + + // Or we can load the state into an existing object. + // + /* + person p ("", "", 0); + + for (result::iterator i (r.begin ()); i != r.end (); ++i) + { + i.load (p); + cout << p.first () << " " << p.last () << " " << p.age () << endl; + } + */ + + cout << endl; + + t.commit (); + } + + // Query that shows how to combine expressions with &&, ||, and ! + // as well as use paranthesis to control evaluation order. + // + { + transaction t (db->begin_transaction ()); + + result r ( + db->query ( + (query::first == "John" || query::first == "Jane") && + !(query::last != "Doe" || query::age > 30))); + + print (r); + t.commit (); + } + + // Query that shows how to use by-reference parameter binding. + // + { + transaction t (db->begin_transaction ()); + + unsigned short lower, upper; + + query q (query::age >= query::_ref (lower) && + query::age < query::_ref (upper)); + + for (unsigned short band (0); band < 10; ++band) + { + lower = band * 10; + upper = lower + 10; + + result r (db->query (q)); + + if (!r.empty ()) + { + cout << lower << '-' << (upper - 1) << ':' << endl; + print (r); + } + } + + t.commit (); + } + + // Query that shows how to use the in() function. + // + { + transaction t (db->begin_transaction ()); + + result r ( + db->query ( + query::last.in ("Smith", "Johnson", "Jockson"))); + + print (r); + + t.commit (); + } + + // The same query but using the in_range() function. + // + { + vector names; + + names.push_back ("Smith"); + names.push_back ("Johnson"); + names.push_back ("Jockson"); + + transaction t (db->begin_transaction ()); + + result r ( + db->query ( + query::last.in_range (names.begin (), names.end ()))); + + print (r); + + t.commit (); + } + } + catch (const odb::exception& e) + { + cerr << e.what () << endl; + return 1; + } +} -- cgit v1.1