aboutsummaryrefslogtreecommitdiff
path: root/mysql/types/driver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'mysql/types/driver.cxx')
-rw-r--r--mysql/types/driver.cxx28
1 files changed, 28 insertions, 0 deletions
diff --git a/mysql/types/driver.cxx b/mysql/types/driver.cxx
index d2f159c..0a7155e 100644
--- a/mysql/types/driver.cxx
+++ b/mysql/types/driver.cxx
@@ -101,6 +101,34 @@ main (int argc, char* argv[])
assert (o == *o1);
}
+
+ // Test char array.
+ //
+ {
+ char_array o1 (1, "");
+ char_array o2 (2, "1234567890");
+ char_array o3 (3, "1234567890123456");
+
+ {
+ transaction t (db->begin ());
+ db->persist (o1);
+ db->persist (o2);
+ db->persist (o3);
+ t.commit ();
+ }
+
+ {
+ transaction t (db->begin ());
+ auto_ptr<char_array> p1 (db->load<char_array> (1));
+ auto_ptr<char_array> p2 (db->load<char_array> (2));
+ auto_ptr<char_array> p3 (db->load<char_array> (3));
+ t.commit ();
+
+ assert (o1 == *p1);
+ assert (o2 == *p2);
+ assert (o3 == *p3);
+ }
+ }
}
catch (const odb::exception& e)
{