aboutsummaryrefslogtreecommitdiff
path: root/mysql/types
AgeCommit message (Collapse)AuthorFilesLines
2015-02-08Recode strncpy as memcpyBoris Kolpackov1-3/+3
VC12 deprecated those hard, as in, it is now an error.
2015-02-06Update copyrightBoris Kolpackov4-4/+4
2014-06-03Support for VC12 (2013), initial workBoris Kolpackov1-1/+4
2013-07-08Add support for Visual Studio 2005Boris Kolpackov1-1/+4
2013-07-03Test MySQL sub-second precision supportBoris Kolpackov3-4/+55
2013-06-21Add support for running tests in dynamic multi-database modeBoris Kolpackov1-16/+5
Only possible in the development build system at this stage.
2013-06-06Use fixed options file names in database-specific testsBoris Kolpackov1-1/+1
2013-06-03Use database name in options and driver files (build part)Boris Kolpackov1-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-09Update copyright yearBoris Kolpackov4-4/+4
2013-01-24Add support for mapping char[N] to CHAR/VARCHAR database typesBoris Kolpackov2-8/+67
Also improve query support for arrays (decaying).
2012-10-29Don't make database default in database-specific testsBoris Kolpackov1-3/+3
2012-10-08Ground work for multi-database supportBoris Kolpackov1-2/+3
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-16Add support for Visual Studio 2012Boris Kolpackov1-1/+4
2012-02-24C++11 support (pass --std ODB compiler option in build makefiles)Boris Kolpackov1-0/+5
2012-01-29Update copyright yearBoris Kolpackov4-4/+4
2012-01-29Remove author field from file headerBoris Kolpackov4-4/+0
Too much effort to maintain.
2011-08-24Make tests use unique table prefixesBoris Kolpackov1-2/+2
2011-08-04Add support for value wrappersBoris Kolpackov1-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-28Add value_traits specializations for std::vector<char>Boris Kolpackov3-48/+13
This allows using it as a buffer for BLOB mapping.
2011-07-22Test automatic and custom ENUM mappingsBoris Kolpackov2-5/+12
2011-07-19New design for NULL semanticsBoris Kolpackov1-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-30Take into account precision in MySQL FLOAT type parsingBoris Kolpackov2-0/+5
2011-04-18Implement automatic mapping for C++ enumsBoris Kolpackov2-4/+12
2011-04-18Get rid of image type argument in value_traitsBoris Kolpackov1-5/+5
2011-03-28Factor out common buffer implementationBoris Kolpackov2-80/+3
2011-03-28Cosmetic changesBoris Kolpackov1-5/+5
2011-03-27Fix issues preventing building outside source directoryBoris Kolpackov1-3/+3
2011-02-25Add support for tests in subdirectoriesBoris Kolpackov1-1/+1
2011-02-18Add odb::core namespace to be used in using-directivesBoris Kolpackov1-1/+1
Port all the examples and tests.
2011-01-04Copyright updateBoris Kolpackov4-4/+4
2010-11-26Save test result to a temp file instead of piping it to diffBoris Kolpackov1-1/+4
This makes tests more robust.
2010-09-28Rename begin_transaction() to begin()Boris Kolpackov1-2/+2
2010-09-28Extract bit-field in endian-portable mannerBoris Kolpackov2-7/+11
2010-09-22Add database type id as value_traits template argumentBoris Kolpackov1-6/+6
2010-09-21Redesign value_traitsBoris Kolpackov1-33/+28
2010-09-13Change pragma syntaxBoris Kolpackov1-37/+39
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-08Add suppor for VC++ buildBoris Kolpackov2-13/+16
2010-09-08Remove unneeded fileBoris Kolpackov1-4/+0
2010-09-06Add automake build supportBoris Kolpackov2-2/+19
2010-08-18Move buffer to the details namespaceBoris Kolpackov2-12/+12
2010-08-18Cosmetic changesBoris Kolpackov1-2/+0
2010-08-13Add the --generate-query optionBoris Kolpackov1-1/+1
2010-08-13Clear unused bits when copying a bitfieldBoris Kolpackov1-7/+13
2010-08-13Fix operator precedenceBoris Kolpackov1-1/+1
2010-08-03New testsBoris Kolpackov5-0/+763