Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-08-30 | Add comment with some explanations | Boris Kolpackov | 1 | -0/+4 | |
2011-08-30 | Implement uniform handle management across all databases | Boris Kolpackov | 1 | -2/+10 | |
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-28 | Add support for creating connection from existing handle | Boris Kolpackov | 1 | -0/+1 | |
This will allow for custom connection establishment and configuration. | |||||
2011-08-22 | Remove stray function declarations | Boris Kolpackov | 1 | -6/+0 | |
2011-08-21 | Add odb::connection class | Boris Kolpackov | 1 | -1/+22 | |
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-02-21 | Factor out active statement cancelling into separate function | Boris Kolpackov | 1 | -0/+12 | |
2011-02-21 | Validate connection in MySQL pool factory | Boris Kolpackov | 1 | -0/+7 | |
This will help deal with the MySQL server closing connections after a certain period of inactivity. | |||||
2011-02-21 | Don't reuse failed connections | Boris Kolpackov | 1 | -0/+14 | |
If MySQL API returns an error indicating the connection is no longer usable, mark it as failed. In connection_pool_factory free failed connections instead of returning them to the pool. | |||||
2011-01-04 | Copyright update | Boris Kolpackov | 1 | -1/+1 | |
2010-11-17 | Add support for unidirectional object relationships | Boris Kolpackov | 1 | -2/+13 | |
New test: common/relationship. | |||||
2010-11-06 | Add support for container persistence | Boris Kolpackov | 1 | -3/+6 | |
Generalize statements that were used for persisting objects to work for both objects and containers. Implement a cache for container statements. | |||||
2010-09-09 | Rework MySQL header inclusion | Boris Kolpackov | 1 | -12/+1 | |
2010-09-03 | Add support for MinGW build | Boris Kolpackov | 1 | -3/+4 | |
2010-08-30 | Support for automake and VC++ builds | Boris Kolpackov | 1 | -2/+17 | |
2010-08-18 | Move shared_ptr to the details namespace | Boris Kolpackov | 1 | -2/+3 | |
2010-08-10 | Delay closing statement until there are no active statements | Boris Kolpackov | 1 | -0/+19 | |
2010-08-10 | Add query support | Boris Kolpackov | 1 | -0/+14 | |
2010-08-03 | Add version inclusion, other cosmetic changes | Boris Kolpackov | 1 | -0/+1 | |
2010-07-26 | Add base support for statements, insert_statement and cache | Boris Kolpackov | 1 | -0/+11 | |
2010-06-04 | Initial implementation | Boris Kolpackov | 1 | -0/+44 | |