aboutsummaryrefslogtreecommitdiff
path: root/oracle/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-11-26Reimplement image copying for OracleBoris Kolpackov2-21/+78
Now we no longer "steal" descriptors (destructive copy). Instead, for LOBs, we clone the locator using OCILobAssign(). For date-time types we extract the data during copying. As a result of this change we no longer need to track image changes and rebind the statements.
2014-06-03Support for VC12 (2013), initial workBoris Kolpackov1-1/+4
2013-07-08Add support for Visual Studio 2005Boris Kolpackov1-1/+4
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-10/+77
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-4/+5
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-10-08Fix issue with unbind data management in query with descriptorsBoris Kolpackov1-0/+15
2012-09-16Add support for Visual Studio 2012Boris Kolpackov1-1/+4
2012-09-04NULL handling improvementsBoris Kolpackov2-0/+10
Add support for specifying NULL-ness for types with built-in mapping. Handle Oracle [N]VARCHAR2 and SQLite FLOAT oddities using this mechanism instead of overriding it at the schema generation level. Also use the is_null argument that is passed to value_traits::init_image() to indicate whether the value can be NULL.
2012-07-10Remove unneeded third argument to create_database()Boris Kolpackov1-1/+1
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.
2012-01-20Don't use min as variable name since it is macro in VC++Boris Kolpackov1-6/+6
2012-01-20Implement callback data re-basing support for LOB result streamingBoris Kolpackov1-4/+37
This is used by the query machinery when a copy of the image has to be made. In this case stream_result() needs to use data from the copy of the image, and not from the image that was bound to the bind array.
2012-01-20Fix incorrect argument orderBoris Kolpackov1-1/+1
2011-11-30Use VARCHAR2 instead of VARCHAR in Oracle testBoris Kolpackov1-1/+1
2011-11-30Add test for fixed-point numbersBoris Kolpackov2-0/+10
2011-11-16Test containers of Oracle LOB typesConstantin Michael2-2/+19
2011-11-10Test large Oracle LOBsConstantin Michael2-0/+45
2011-11-10Oracle INTERVAL hours field valid range is 0-23Constantin Michael1-1/+1
2011-11-10Add descriptor management flags for TIMESTAMP and INTERVAL image typesBoris Kolpackov2-1/+27
For a query expression that has only by-value parameters, we guarantee that it can be used by multiple threads. However, the way we handle TIMESTAMP and INTERVAL types now requires the modification of the image during query execution. To resolve this, the datetime, interval_ym, and interval_ds image types now have flags that allow the query implementation to avoid the modification.
2011-11-08Add tests for Oracle INTERVAL temporal typesConstantin Michael3-25/+217
2011-10-21Add 64 bit integer tests to Oracle types testConstantin Michael2-32/+68
2011-10-21Add character set conversion tests to Oracle types testConstantin Michael2-10/+103
2011-10-21Add Oracle types testConstantin Michael5-0/+412