Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-02-13 | Drop copyright notice from source code | Karen Arutyunov | 4 | -4/+0 | |
2019-01-17 | Update copyright year | Karen Arutyunov | 4 | -4/+4 | |
2018-05-24 | Update copyright year | Karen Arutyunov | 4 | -4/+4 | |
2017-01-03 | Update copyright year | Boris Kolpackov | 4 | -4/+4 | |
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 | 4 | -4/+4 | |
2014-06-03 | Support for VC12 (2013), initial work | Boris Kolpackov | 1 | -1/+4 | |
2013-08-14 | Get rid of warning | Boris Kolpackov | 1 | -3/+3 | |
2013-07-08 | Add support for Visual Studio 2005 | Boris Kolpackov | 1 | -1/+4 | |
2013-06-21 | Add support for running tests in dynamic multi-database mode | Boris Kolpackov | 1 | -15/+5 | |
Only possible in the development build system at this stage. | |||||
2013-06-06 | Use fixed options file names in database-specific tests | Boris Kolpackov | 1 | -2/+1 | |
2013-06-03 | Use database name in options and driver files (build part) | Boris Kolpackov | 1 | -1/+1 | |
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 | 4 | -4/+4 | |
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 | 1 | -3/+3 | |
2012-10-08 | Ground work for multi-database support | Boris Kolpackov | 1 | -4/+4 | |
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 | 1 | -1/+4 | |
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-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-02-24 | C++11 support (pass --std ODB compiler option in build makefiles) | Boris Kolpackov | 1 | -0/+5 | |
2012-01-29 | Update copyright year | Boris Kolpackov | 4 | -4/+4 | |
2012-01-29 | Remove author field from file header | Boris Kolpackov | 4 | -4/+0 | |
Too much effort to maintain. | |||||
2011-08-24 | Make tests use unique table prefixes | Boris Kolpackov | 1 | -2/+2 | |
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-28 | Factor out common buffer implementation | Boris Kolpackov | 2 | -79/+2 | |
2011-03-28 | Add SQLite-specific tests | Boris Kolpackov | 5 | -0/+413 | |