Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
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/+19 | |
2011-08-04 | Add support for value wrappers | Boris Kolpackov | 1 | -1/+1 | |
Wrapper is a class that wraps another type. Examples of wrappers are various smart pointers, holders, etc. A wrapper can be transparent or it can handle the NULL semantics. The new odb::nullable class template is a NULL wrapper that helps to add the NULL semantics to a value type. New test: common/wrapper. | |||||
2011-07-28 | Add value_traits specializations for std::vector<char> | Boris Kolpackov | 3 | -48/+13 | |
This allows using it as a buffer for BLOB mapping. | |||||
2011-07-22 | Test automatic and custom ENUM mappings | Boris Kolpackov | 2 | -5/+12 | |
2011-07-19 | New design for NULL semantics | Boris Kolpackov | 1 | -37/+37 | |
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-06-30 | Take into account precision in MySQL FLOAT type parsing | Boris Kolpackov | 2 | -0/+5 | |
2011-04-18 | Implement automatic mapping for C++ enums | Boris Kolpackov | 2 | -4/+12 | |
2011-04-18 | Get rid of image type argument in value_traits | Boris Kolpackov | 1 | -5/+5 | |
2011-03-30 | Autotools support for SQLite | Boris Kolpackov | 1 | -0/+1 | |
2011-03-28 | Factor out common buffer implementation | Boris Kolpackov | 2 | -80/+3 | |
2011-03-28 | Cosmetic changes | Boris Kolpackov | 1 | -5/+5 | |
2011-03-28 | Add schema creation flag to create_database() | Boris Kolpackov | 1 | -1/+1 | |
2011-03-27 | Fix issues preventing building outside source directory | Boris Kolpackov | 4 | -10/+10 | |
2011-02-25 | Add support for tests in subdirectories | Boris Kolpackov | 7 | -23/+23 | |
2011-02-18 | Add odb::core namespace to be used in using-directives | Boris Kolpackov | 4 | -4/+4 | |
Port all the examples and tests. | |||||
2011-02-17 | Add test infrastructure for boost profile | Boris Kolpackov | 1 | -3/+3 | |
2011-01-24 | Fix bug in makefile | Boris Kolpackov | 1 | -1/+1 | |
2011-01-18 | Add support for native SQL statement execution | Boris Kolpackov | 4 | -0/+152 | |
New test: mysql/native. New manual section: 3.9, "Executing Native SQL Statements". | |||||
2011-01-04 | Copyright update | Boris Kolpackov | 14 | -14/+14 | |
2010-12-13 | Detect TR1 <memory> availability | Boris Kolpackov | 3 | -12/+13 | |
Also use the wrapper header from libodb. | |||||
2010-11-26 | Save test result to a temp file instead of piping it to diff | Boris Kolpackov | 3 | -3/+12 | |
This makes tests more robust. | |||||
2010-09-28 | Rename begin_transaction() to begin() | Boris Kolpackov | 3 | -11/+11 | |
2010-09-28 | Extract bit-field in endian-portable manner | Boris Kolpackov | 2 | -7/+11 | |
2010-09-22 | Add database type id as value_traits template argument | Boris Kolpackov | 1 | -6/+6 | |
2010-09-21 | Redesign value_traits | Boris Kolpackov | 1 | -33/+28 | |
2010-09-20 | Rename store() to update() | Boris Kolpackov | 1 | -3/+3 | |
2010-09-20 | Cache result by default | Boris Kolpackov | 1 | -1/+0 | |
2010-09-14 | Use global flags to get tidier object file names | Boris Kolpackov | 1 | -2/+2 | |
2010-09-13 | Handle buffer growth in cached result | Boris Kolpackov | 2 | -52/+116 | |
2010-09-13 | Change pragma syntax | Boris Kolpackov | 3 | -43/+45 | |
Change odb pragma namespace to db. Use qualifiers (object, value, and member) to specify type/member name. Add support for mapping C++ types to db types. | |||||
2010-09-10 | Do not distribute generated test-odb.cxx | Boris Kolpackov | 1 | -1/+2 | |
2010-09-10 | Add automated build and test scripts for Windows | Boris Kolpackov | 2 | -2/+72 | |
2010-09-10 | Link to 64-bit libcommon in 64-bit builds | Boris Kolpackov | 1 | -2/+2 | |
2010-09-10 | Use space instead of ';' as library separator | Boris Kolpackov | 1 | -4/+4 | |
2010-09-09 | Disable C4068 unknown pragma | Boris Kolpackov | 2 | -0/+8 | |
2010-09-08 | Add suppor for VC++ build | Boris Kolpackov | 14 | -39/+647 | |
2010-09-08 | Remove unneeded file | Boris Kolpackov | 1 | -4/+0 | |
2010-09-06 | Add automake build support | Boris Kolpackov | 7 | -6/+86 | |
2010-08-18 | Move buffer to the details namespace | Boris Kolpackov | 2 | -12/+12 | |
2010-08-18 | Cosmetic changes | Boris Kolpackov | 3 | -6/+0 | |
2010-08-13 | Add the --generate-query option | Boris Kolpackov | 1 | -1/+1 | |
2010-08-13 | Clear unused bits when copying a bitfield | Boris Kolpackov | 1 | -7/+13 | |
2010-08-13 | Fix operator precedence | Boris Kolpackov | 1 | -1/+1 | |
2010-08-03 | New tests | Boris Kolpackov | 14 | -0/+1184 | |