aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2011-10-03Work around bug in Sun CC1.6.01.6Boris Kolpackov3-2/+17
2011-10-03Export query operators that were made non-inlineBoris Kolpackov1-3/+3
2011-10-03Bump version to 1.6.0Boris Kolpackov2-4/+4
2011-10-02If query substituting placeholder is empty, pass true expression insteadBoris Kolpackov2-59/+142
This allows uniform usage of views both with and without any extra conditions. Also optimize some common cases so that we don't have useless WHERE TRUE clauses or (...) AND (TRUE) expressions.
2011-09-22Add const char[n] value_traits specialization in addition to char[n]1.6.0.a2Boris Kolpackov1-0/+28
2011-09-21Rework const object handlingBoris Kolpackov2-7/+5
Now objects are always loaded as non-const and the object cache in session treats all objects as non-const.
2011-09-20Bump version to 1.6.0.a2Boris Kolpackov2-4/+4
2011-09-19Add assertion for mismatch of result set column count in MySQL and SQLiteBoris Kolpackov1-0/+9
This is useful for detecting native views that happened to have stray data members. Also update comment in PostgreSQL.
2011-09-16Support for views; integrated partBoris Kolpackov5-26/+140
2011-09-15Fix bug in result rebinding logicBoris Kolpackov1-12/+1
2011-09-09New templated query_columns architectureBoris Kolpackov3-62/+77
We also now use the correct separate "role"-base join approach instead of having a single merged join for each table.
2011-09-06Add non-inline destructorBoris Kolpackov4-2/+19
2011-09-06Stylistic changesBoris Kolpackov3-8/+6
2011-09-05Support for views; native partBoris Kolpackov14-91/+569
2011-09-05Allow select statement without parametersBoris Kolpackov2-5/+26
2011-08-30Add comment with some explanationsBoris Kolpackov1-0/+4
2011-08-30Implement uniform handle management across all databasesBoris Kolpackov5-22/+128
Also use the auto_handle template instead of the raw handle in connection, statement, and result classes. This removes a lot of brittle "exception safety guarantee" code that we had in those classes.
2011-08-28Add create() hook to connection factoriesBoris Kolpackov2-20/+40
This will allow the user to either establish the connection themselves (using the handle c-tor) and/or configure the connection post-creation.
2011-08-28Add support for creating connection from existing handleBoris Kolpackov2-2/+15
This will allow for custom connection establishment and configuration.
2011-08-26Add support for specifying client character set for MySQL databaseBoris Kolpackov3-2/+32
2011-08-24Add support for transaction multiplexingBoris Kolpackov8-16/+44
Also delay getting a connection until after we do all the sanity checks (e.g., that there is no active transaction). Otherwise we are running risk of getting blocked rather than throwing an exception.
2011-08-22Bump version to 1.6.0.a11.6.0.a1Boris Kolpackov2-4/+4
2011-08-22Remove stray function declarationsBoris Kolpackov1-6/+0
2011-08-21Add odb::connection classBoris Kolpackov10-71/+110
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-08-19Rework query machinery not to use '_' as primary table aliasBoris Kolpackov3-65/+151
Now we always qualify with the actual table name and use the '_' alias for situations where an object is referencing itself.
2011-08-18Fix custom recursive loading in post_load callbackBoris Kolpackov4-3/+45
Before we called the callback while holding the statements locked. As a result, if the callback tried to load another object of this type, it failed. Now we unlock the statements (since we have completely loaded the object from ODB's point of view) and then call the callback. The callback test has been updated to test this situation.
2011-08-04Merge branch 'wrapper'Boris Kolpackov1-1/+159
2011-08-04Add support for value wrappersBoris Kolpackov1-1/+159
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-31Minor optimizationBoris Kolpackov1-1/+1
2011-07-28Add value_traits specializations for std::vector<char>Boris Kolpackov2-0/+52
This allows using it as a buffer for BLOB mapping.
2011-07-27Bump version to 1.6.0Boris Kolpackov2-4/+4
2011-07-25Suppress warnings1.5.0Boris Kolpackov1-5/+5
2011-07-25Bump version to 1.5.0Boris Kolpackov2-4/+4
2011-07-11Free prepared statement cache before closing connectionBoris Kolpackov1-0/+4
2011-07-04Implement support for database operations callbacksBoris Kolpackov3-8/+48
New object pragma: callback. New test: common/callback. New manual section: 10.1.4, "callback".
2011-04-27Work around VC++ bugs1.4.0Boris Kolpackov2-2/+3
2011-04-26Bump version to 1.4.0Boris Kolpackov2-4/+4
2011-04-25Reuse container traits from base objectsBoris Kolpackov2-14/+62
2011-04-25Pass id binding instead of id image in container traitsBoris Kolpackov4-25/+35
This will allow us to reuse things more.
2011-04-24Remove stray post includeBoris Kolpackov1-2/+0
2011-04-22Initial support for non-polymorphic inheritanceBoris Kolpackov1-1/+3
Every class gets a separate table. New test: common/inheritance.
2011-04-20Add missing static qualifierBoris Kolpackov1-1/+1
2011-04-19Remove stray #endifBoris Kolpackov1-2/+0
2011-04-18Implement automatic mapping for C++ enumsBoris Kolpackov5-10/+204
2011-04-18Get rid of image type argument in value_traitsBoris Kolpackov2-53/+118
2011-04-05Bump version to 1.3.01.3.0Boris Kolpackov2-4/+4
2011-04-03Make sure MySQL C API is not called from inline functionsBoris Kolpackov2-5/+7
Otherwise, on some platforms, the user may need to link to libmysqlclient explicitly.
2011-03-31Bump version to 1.3.0.b1Boris Kolpackov2-4/+4
2011-03-29Bring in other execute() overloads from odb::databaseBoris Kolpackov1-0/+2
2011-03-25Make queries without by-reference parameters immutableBoris Kolpackov1-11/+32
This makes it possible to share such queries between multiple threads without the need for synchronization.