aboutsummaryrefslogtreecommitdiff
path: root/odb/oracle/connection.hxx
AgeCommit message (Collapse)AuthorFilesLines
2015-11-09Make database class move-constructibleBoris Kolpackov1-8/+31
This means it can be returned by value from a function in C++11.
2015-02-06Update copyrightBoris Kolpackov1-1/+1
2013-02-09Update copyright yearBoris Kolpackov1-1/+1
2012-12-03Add support for executing common query using static interfaceBoris Kolpackov1-1/+5
2012-11-29Namespace management for static multi-database supportBoris Kolpackov1-1/+0
Now in libodb the odb::core namespace is split into odb::common (database- independent stuff) and odb::core proper, which imports odb::common. Each database runtime now defines odb::<db>::core namespace which also imports odb::common and adds the database-specific bits. The overall idea is that one can do using namespace odb::<db>::core just like for odb::core.
2012-10-15Implement early connection releaseBoris Kolpackov1-0/+3
2012-10-12Completion of prepared query supportBoris Kolpackov1-0/+18
2012-04-26Replace remaining std::auto_ptr uses with odb::details::unique_ptrBoris Kolpackov1-5/+3
GCC in C++11 mode issues a deprecation warning for std::auto_ptr.
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-30Improve the Oracle translate_error implementationConstantin Michael1-0/+14
The improved implementation scans all the records associated with an error handle. Furthermore, if it is established that the connection to the database has been lost, the connection is marked as such. Additionally, all special exceptions (deadlock, timeout, and connection_lost) are now supported.
2011-11-17Remove unnecessary forward declarationBoris Kolpackov1-1/+0
2011-11-17Remove unnecessary includesBoris Kolpackov1-1/+0
2011-11-08Add support for SQL statement tracingBoris Kolpackov1-0/+20
2011-10-17Allocate LOB manipulation buffer in connection instance instead of in imageConstantin Michael1-0/+9
2011-10-14Enable statement cache in connectionConstantin Michael1-6/+6
2011-09-05Add database, connection, connection-factory, and transaction supportConstantin Michael1-0/+105