aboutsummaryrefslogtreecommitdiff
path: root/odb/makefile
AgeCommit message (Collapse)AuthorFilesLines
2013-02-14Make sure windows.hxx is always installed on WindowsBoris Kolpackov1-12/+15
2013-02-09Update copyright yearBoris Kolpackov1-1/+1
2013-02-05Add support for change-tracking containersBoris Kolpackov1-0/+1
ODB now supports "smart" ordered containers. Such containers get extra functions for updating and deleting individual elements. Based on this functionality implement two change-tracking containers: odb::vector (equivalent to std::vector) and QOdbList (equivalent to QList). New tests: common/container/change-tracking and qt/common/container/change- tracking.
2012-11-21Add dynamic multi-database query supportBoris Kolpackov1-0/+1
2012-10-19Initial support for prepared queriesBoris Kolpackov1-0/+2
2012-09-16Add support for Visual Studio 2012Boris Kolpackov1-1/+4
2012-04-30Add empty source file to facilitate VC++ symbol exporting2.0.0Boris Kolpackov1-0/+1
2012-03-02Reimplement C++11 support to be header-onlyBoris Kolpackov1-7/+0
This way, the same build of the runtime libraries can be used in both C++98 and C++11 modes. This is important for when runtimes are installed or packaged.
2012-02-28Build infrastructure for C++11 supportBoris Kolpackov1-2/+9
2012-01-29Update copyright yearBoris Kolpackov1-1/+1
2012-01-29Remove author field from file headerBoris Kolpackov1-2/+1
Too much effort to maintain.
2011-11-15Add support for selecting threading implementationBoris Kolpackov1-2/+29
2011-11-07Add support for SQL statement tracingBoris Kolpackov1-0/+2
2011-10-27Make sure output directory exist before generating config.hBoris Kolpackov1-1/+1
2011-08-21Add odb::connection classBoris Kolpackov1-0/+1
This abstract class represents a connection to the database. One can use it to start a transaction or to execute a native statement out of a transaction. Before we had concrete connection classes in the database runtime libraries (e.g., odb::mysql::connection). Now these classes derive from odb::connection.
2011-03-01Add support for embedded database schemasBoris Kolpackov1-6/+8
New options: --schema-format, --default-schema. New example: schema/embedded.
2011-01-24Add dummy source file for DLL exportBoris Kolpackov1-5/+6
2011-01-04Copyright updateBoris Kolpackov1-1/+1
2010-12-10Cosmetic changesBoris Kolpackov1-3/+4
2010-11-22Add session, database operations on pointers and const objectsBoris Kolpackov1-0/+1
Currently, session is just an object cache. The persist, update, and erase database operations are overloaded to also work on object pointers. All the database operations and the query facility now support const objects. New session-related exceptions: not_in_session, already_in_session, const_object.
2010-09-14Support fall-back dependency trackingBoris Kolpackov1-2/+2
2010-09-13Make odb::exception abstractBoris Kolpackov1-1/+0
Implement what() in concrete exceptions.
2010-09-09Add empty source files to allow inline function exportingBoris Kolpackov1-0/+3
2010-09-06Generate config.hBoris Kolpackov1-1/+22
2010-09-03Implement Win32 TLS supportBoris Kolpackov1-3/+10
2010-08-26Add support for creating other build systems (meta-building)Boris Kolpackov1-17/+57
Add support for automake, VC++ 9, and VC++ 10. Also add the Win32 and 'NULL' threading model implementations.
2010-08-18Move shared_ptr to the details namespaceBoris Kolpackov1-2/+1
2010-08-18Move buffer to the details namespaceBoris Kolpackov1-1/+2
2010-08-18Add multi-threading primitivesBoris Kolpackov1-1/+5
Currently only the pthread-based implementation is present.
2010-07-26Buffer implementationBoris Kolpackov1-0/+1
2010-07-20Get rid of the session mechanism for nowBoris Kolpackov1-2/+1
Add low-level API instead.
2010-06-04Initial implementationBoris Kolpackov1-0/+60