Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
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 | |
2011-03-28 | Recode tests to work with implementations lacking result::size() | Boris Kolpackov | 1 | -3/+3 | |
2011-03-27 | Add traits implementation for SQLite | Boris Kolpackov | 3 | -48/+124 | |
2011-03-27 | Fix issues preventing building outside source directory | Boris Kolpackov | 1 | -3/+3 | |
2011-02-25 | Add support for tests in subdirectories | Boris Kolpackov | 1 | -1/+1 | |
2011-02-22 | Fix iteration over uncached query result | Boris Kolpackov | 2 | -0/+15 | |
2011-02-18 | Add odb::core namespace to be used in using-directives | Boris Kolpackov | 1 | -1/+1 | |
Port all the examples and tests. | |||||
2011-01-04 | Copyright update | Boris Kolpackov | 4 | -4/+4 | |
2010-11-28 | Simplify tests by using literal names | Boris Kolpackov | 1 | -2/+1 | |
2010-11-26 | Postpone fetching of the data for cached results | Boris Kolpackov | 2 | -0/+19 | |
This way if an object of the same type is loaded in between iteration, the fetched image won't be messed up. | |||||
2010-11-26 | Save test result to a temp file instead of piping it to diff | Boris Kolpackov | 1 | -1/+4 | |
This makes tests more robust. | |||||
2010-11-22 | Add missing template argument | Boris Kolpackov | 1 | -1/+1 | |
2010-09-28 | Rename begin_transaction() to begin() | Boris Kolpackov | 1 | -14/+14 | |
2010-09-22 | Add database type id as value_traits template argument | Boris Kolpackov | 1 | -1/+1 | |
2010-09-21 | Redesign value_traits | Boris Kolpackov | 1 | -6/+6 | |
2010-09-20 | Make result_iterator::operator* return reference | Boris Kolpackov | 1 | -2/+4 | |
Add load() version that returns the dynamically-allocated instance. |