Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-02-08 | Clean test templates of old cruft | Boris Kolpackov | 2 | -4/+0 | |
Most tests don't print anything | |||||
2015-02-08 | Recode strncpy as memcpy | Boris Kolpackov | 1 | -4/+4 | |
VC12 deprecated those hard, as in, it is now an error. | |||||
2015-02-06 | Update copyright | Boris Kolpackov | 24 | -24/+24 | |
2014-06-15 | Use single template set of templates for .sln files | Boris Kolpackov | 6 | -82/+5 | |
2014-06-03 | Support for VC12 (2013), initial work | Boris Kolpackov | 11 | -8/+261 | |
2013-09-02 | Handle SQLite commit failures that don't automatically rollback transaction | Boris Kolpackov | 5 | -0/+193 | |
2013-08-14 | Get rid of warning | Boris Kolpackov | 1 | -3/+3 | |
2013-07-08 | Fix incorrect ODB_MSC_VER version in VC11 projects | Boris Kolpackov | 1 | -1/+1 | |
2013-07-08 | Add support for Visual Studio 2005 | Boris Kolpackov | 9 | -7/+397 | |
2013-06-21 | Add support for running tests in dynamic multi-database mode | Boris Kolpackov | 7 | -85/+22 | |
Only possible in the development build system at this stage. | |||||
2013-06-06 | Use fixed options file names in database-specific tests | Boris Kolpackov | 6 | -10/+6 | |
2013-06-03 | Use database name in options and driver files (build part) | Boris Kolpackov | 6 | -6/+6 | |
This way we will be able to have several databases configured at the same time, which is needed for multi-database support testing. | |||||
2013-02-09 | Update copyright year | Boris Kolpackov | 21 | -21/+21 | |
2013-01-24 | Add support for mapping char[N] to CHAR/VARCHAR database types | Boris Kolpackov | 2 | -10/+94 | |
Also improve query support for arrays (decaying). | |||||
2012-10-29 | Don't make database default in database-specific tests | Boris Kolpackov | 4 | -9/+9 | |
2012-10-08 | Ground work for multi-database support | Boris Kolpackov | 6 | -16/+22 | |
All generated code now includes database id. The database-specific database class interface has been updated to include all the database operations. The database-specific tests now use this interface. | |||||
2012-09-16 | Add support for Visual Studio 2012 | Boris Kolpackov | 10 | -7/+251 | |
2012-09-14 | Fix incorrect data member type | Boris Kolpackov | 1 | -1/+1 | |
2012-09-10 | Add support for alternative UTF-16 image for TEXT in SQLite | Boris Kolpackov | 2 | -11/+30 | |
Use it to handle QString and support std::wstring on Windows. | |||||
2012-09-07 | Add support for passing database name as std::wstring on Windows | Boris Kolpackov | 1 | -1/+12 | |
2012-09-06 | Test that database constructors are unambiguous | Boris Kolpackov | 4 | -0/+113 | |
2012-09-04 | NULL handling improvements | Boris Kolpackov | 1 | -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-18 | Convert NULLs to NaNs in SQLite for float and double | Boris Kolpackov | 2 | -6/+12 | |
This makes it consistent with SQLite behavior which converts NaNs to NULLs. | |||||
2012-07-17 | Use __ifelse__ instead of m4_ifelse2.1.0.a1 | Boris Kolpackov | 4 | -8/+8 | |
2012-07-10 | Add support for custom database type mapping | Boris Kolpackov | 5 | -0/+227 | |
New pragma qualifier, map, and specifiers: as, to, from. New tests: <database>/custom. | |||||
2012-03-02 | C++11 support in automake and VC++ projects, portability fixes | Boris Kolpackov | 3 | -2/+6 | |
2012-02-24 | C++11 support (pass --std ODB compiler option in build makefiles) | Boris Kolpackov | 3 | -0/+15 | |
2012-01-29 | Update copyright year | Boris Kolpackov | 16 | -16/+16 | |
2012-01-29 | Remove author field from file header | Boris Kolpackov | 16 | -16/+0 | |
Too much effort to maintain. | |||||
2011-09-22 | Remove NDEBUG macro from VC project; tests always need enabled assert()1.6.0.a2 | Boris Kolpackov | 2 | -4/+4 | |
2011-08-24 | Make tests use unique table prefixes | Boris Kolpackov | 4 | -10/+17 | |
2011-07-28 | Add value_traits specializations for std::vector<char> | Boris Kolpackov | 3 | -43/+5 | |
This allows using it as a buffer for BLOB mapping. | |||||
2011-07-19 | New design for NULL semantics | Boris Kolpackov | 1 | -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-18 | Get rid of image type argument in value_traits | Boris Kolpackov | 1 | -2/+2 | |
2011-03-30 | Autotools support for SQLite | Boris Kolpackov | 3 | -0/+1 | |
2011-03-28 | Factor out common buffer implementation | Boris Kolpackov | 2 | -79/+2 | |
2011-03-28 | Add SQLite-specific tests | Boris Kolpackov | 25 | -0/+1799 | |