aboutsummaryrefslogtreecommitdiff
path: root/odb/pgsql/traits.hxx
AgeCommit message (Collapse)AuthorFilesLines
2012-09-11Add support for mapping std::array to BLOB and char[16] to UUID typesBoris Kolpackov1-15/+153
2012-01-29Update copyright yearBoris Kolpackov1-1/+1
2012-01-29Remove author field from file headerBoris Kolpackov1-1/+0
Too much effort to maintain.
2011-11-03Add support for mapping char[N] and unsigned char[N] types to BLOB1.7.0.a1Boris Kolpackov1-0/+77
New test: common/blob.
2011-11-03Add support for mapping std::vector<unsigned char> to BLOB typesBoris Kolpackov1-1/+36
2011-10-21Add support for const data membersBoris Kolpackov1-3/+6
Const data members are automatically treated as readonly. New test: const-member.
2011-09-22Add const char[n] value_traits specialization in addition to char[n]1.6.0.a2Boris Kolpackov1-0/+18
2011-09-16Support for views; integrated partBoris Kolpackov1-0/+16
2011-08-04Add support for value wrappersBoris Kolpackov1-1/+227
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 Kolpackov1-0/+30
This allows using it as a buffer for BLOB mapping.
2011-07-25Remove @@ notes that no longer applyBoris Kolpackov1-2/+0
2011-07-14Map unsigned short and int C++ types to SMALLINT and INTEGER by defaultConstantin Michael1-2/+2
2011-07-13Add support for DATE, TIME and TIMESTAMP SQL typesConstantin Michael1-13/+9
2011-07-04Correct traits byte-order conversionConstantin Michael1-1/+1
2011-06-24Move byte order conversion to traits set_value/set_image functionsConstantin Michael1-2/+3
2011-06-07Remove enum from set of supported typesConstantin Michael1-18/+2
2011-06-02Add date/time type image_traitsConstantin Michael1-1/+14
2011-05-31Complete traitsConstantin Michael1-11/+54
2011-05-27Add traitsConstantin Michael1-0/+291