aboutsummaryrefslogtreecommitdiff
path: root/sqlite
AgeCommit message (Collapse)AuthorFilesLines
2012-09-16Add support for Visual Studio 2012Boris Kolpackov10-7/+251
2012-09-14Fix incorrect data member typeBoris Kolpackov1-1/+1
2012-09-10Add support for alternative UTF-16 image for TEXT in SQLiteBoris Kolpackov2-11/+30
Use it to handle QString and support std::wstring on Windows.
2012-09-07Add support for passing database name as std::wstring on WindowsBoris Kolpackov1-1/+12
2012-09-06Test that database constructors are unambiguousBoris Kolpackov4-0/+113
2012-09-04NULL handling improvementsBoris Kolpackov1-1/+1
Add support for specifying NULL-ness for types with built-in mapping. Handle Oracle [N]VARCHAR2 and SQLite FLOAT oddities using this mechanism instead of overriding it at the schema generation level. Also use the is_null argument that is passed to value_traits::init_image() to indicate whether the value can be NULL.
2012-07-18Convert NULLs to NaNs in SQLite for float and doubleBoris Kolpackov2-6/+12
This makes it consistent with SQLite behavior which converts NaNs to NULLs.
2012-07-17Use __ifelse__ instead of m4_ifelse2.1.0.a1Boris Kolpackov4-8/+8
2012-07-10Add support for custom database type mappingBoris Kolpackov5-0/+227
New pragma qualifier, map, and specifiers: as, to, from. New tests: <database>/custom.
2012-03-02C++11 support in automake and VC++ projects, portability fixesBoris Kolpackov3-2/+6
2012-02-24C++11 support (pass --std ODB compiler option in build makefiles)Boris Kolpackov3-0/+15
2012-01-29Update copyright yearBoris Kolpackov16-16/+16
2012-01-29Remove author field from file headerBoris Kolpackov16-16/+0
Too much effort to maintain.
2011-09-22Remove NDEBUG macro from VC project; tests always need enabled assert()1.6.0.a2Boris Kolpackov2-4/+4
2011-08-24Make tests use unique table prefixesBoris Kolpackov4-10/+17
2011-07-28Add value_traits specializations for std::vector<char>Boris Kolpackov3-43/+5
This allows using it as a buffer for BLOB mapping.
2011-07-19New design for NULL semanticsBoris Kolpackov1-6/+6
Now, instead of being specified as part of the SQL type with the type pragma, there are separate null and not_null pragmas. The not_null pragma was used to control NULL-ness of object pointers. Now the two pragmas are used consistently for object pointers and simple values (and in the future will work for composite values and containers).
2011-04-18Get rid of image type argument in value_traitsBoris Kolpackov1-2/+2
2011-03-30Autotools support for SQLiteBoris Kolpackov3-0/+1
2011-03-28Factor out common buffer implementationBoris Kolpackov2-79/+2
2011-03-28Add SQLite-specific testsBoris Kolpackov25-0/+1799