Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-05-24 | Update copyright year | Karen Arutyunov | 9 | -9/+9 | |
2017-01-03 | Update copyright year | Boris Kolpackov | 9 | -9/+9 | |
2016-06-15 | Get rid of C++11 deprecation warnings for auto_ptr, exception specs | Boris Kolpackov | 1 | -0/+6 | |
In particular, std::auto_ptr is no longer mapped in C++11. | |||||
2015-07-27 | Fix member name conflicts in query support | Boris Kolpackov | 1 | -0/+34 | |
2015-07-17 | Handle empty query::in_range() case | Boris Kolpackov | 1 | -0/+6 | |
2015-02-08 | Recode strcpy as memcpy | Boris Kolpackov | 1 | -1/+2 | |
VC12 deprecated those hard, as in, it is now an error. | |||||
2015-02-08 | Recode strncpy as memcpy | Boris Kolpackov | 1 | -4/+5 | |
VC12 deprecated those hard, as in, it is now an error. | |||||
2015-02-06 | Update copyright | Boris Kolpackov | 7 | -7/+7 | |
2014-11-10 | Implement {query,execute}_{one,value}() shortcut functions | Michael Shepanski | 4 | -0/+349 | |
Useful in situations where the query is know to return at most one element (*_one) or exactly one element (*_value). | |||||
2014-06-03 | Support for VC12 (2013), initial work | Boris Kolpackov | 2 | -2/+8 | |
2013-07-08 | Add support for Visual Studio 2005 | Boris Kolpackov | 2 | -4/+8 | |
2013-06-21 | Add support for running tests in dynamic multi-database mode | Boris Kolpackov | 5 | -65/+118 | |
Only possible in the development build system at this stage. | |||||
2013-06-13 | Handle --database option directly in automake and VC++ projects | Boris Kolpackov | 2 | -7/+8 | |
2013-06-03 | Use database name in options and driver files (build part) | Boris Kolpackov | 2 | -2/+2 | |
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-21 | Add support for pattern matching (SQL LIKE) | Boris Kolpackov | 2 | -0/+42 | |
2013-02-09 | Update copyright year | Boris Kolpackov | 6 | -6/+6 | |
2013-01-25 | By default map std::array<char, N> to string instead of binary | Boris Kolpackov | 1 | -7/+2 | |
2013-01-24 | Add support for mapping char[N] to CHAR/VARCHAR database types | Boris Kolpackov | 8 | -10/+373 | |
Also improve query support for arrays (decaying). | |||||
2012-10-19 | Completion of prepared query support | Boris Kolpackov | 1 | -1/+1 | |
2012-10-08 | More query result size() fixes | Boris Kolpackov | 1 | -1/+12 | |
2012-09-28 | Make sure size() can still be called once we reached the end of result set | Boris Kolpackov | 2 | -0/+46 | |
2012-09-16 | Add support for Visual Studio 2012 | Boris Kolpackov | 1 | -1/+3 | |
2012-04-23 | Polymorphic inheritance support | Boris Kolpackov | 1 | -2/+12 | |
2012-03-07 | Use RAII to free select statement results | Boris Kolpackov | 2 | -0/+20 | |
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 | 3 | -3/+3 | |
2012-01-29 | Remove author field from file header | Boris Kolpackov | 3 | -3/+0 | |
Too much effort to maintain. | |||||
2012-01-20 | Disable re-loading of object with long data for SQL Server | Boris Kolpackov | 1 | -0/+7 | |
2012-01-20 | Query support for SQL Server | Boris Kolpackov | 1 | -5/+11 | |
2011-11-08 | Get rid of custom value_traits specialization in query test | Boris Kolpackov | 7 | -263/+3 | |
auto_ptr<string> is now handled automatically as a wrapper. | |||||
2011-11-03 | Use ODB_DATABASE_XXX macros instead DATABASE_XXX in ODB-compiled headers1.7.0.a1 | Boris Kolpackov | 1 | -3/+1 | |
DATABASE_XXX macros are not defined when building from VC++ project. | |||||
2011-11-02 | Add result_iterator::id() function that returns id without loading object | Boris Kolpackov | 2 | -0/+15 | |
2011-11-02 | Prevent potential image overwrite in MySQL query result | Boris Kolpackov | 1 | -1/+6 | |
2011-11-01 | Enable query test 14 for Oracle | Constantin Michael | 1 | -2/+0 | |
2011-10-27 | Dereference nullable | Boris Kolpackov | 1 | -1/+1 | |
2011-10-27 | Rename typedef type for clarity | Constantin Michael | 2 | -4/+5 | |
2011-10-27 | Temporarily exclude query test 14 from Oracle test suite | Constantin Michael | 1 | -13/+15 | |
2011-10-27 | Simplify LOB column query tests | Constantin Michael | 3 | -62/+67 | |
2011-10-27 | Revert to manually quoting Oracle identifiers where necessary | Constantin Michael | 1 | -10/+23 | |
2011-10-26 | Add BLOB comparison and null predicate test cases to query test | Constantin Michael | 3 | -53/+119 | |
2011-10-26 | Temporarily disable query test 14 | Constantin Michael | 1 | -13/+13 | |
2011-10-26 | Use CLOB instead of TEXT for Oracle query test | Constantin Michael | 1 | -1/+5 | |
2011-10-26 | Add Oracle traits implementation for query test | Constantin Michael | 2 | -0/+62 | |
2011-10-26 | Quote schema object identifiers for Oracle where necessary | Constantin Michael | 1 | -8/+12 | |
Oracle converts all alphabetical characters in unquoted schema object identifiers to uppercase. This behaviour cannot be disabled. | |||||
2011-10-26 | Get rid of common_ prefix in query test | Boris Kolpackov | 1 | -1/+1 | |
2011-08-24 | Make tests use unique table prefixes | Boris Kolpackov | 1 | -1/+2 | |
2011-07-19 | New design for NULL semantics | Boris Kolpackov | 1 | -1/+1 | |
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-07-06 | Add traits for PostgreSQL query test | Constantin Michael | 2 | -0/+61 | |
2011-04-18 | Get rid of image type argument in value_traits | Boris Kolpackov | 2 | -2/+2 | |
2011-03-30 | Autotools support for SQLite | Boris Kolpackov | 1 | -1/+1 | |