aboutsummaryrefslogtreecommitdiff
path: root/odb/tracer/database.cxx
AgeCommit message (Collapse)AuthorFilesLines
2020-02-13Drop copyright notice from source codeHEADmasterKaren Arutyunov1-1/+0
2011-08-24Add support for transaction multiplexingBoris Kolpackov1-2/+2
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-21Add odb::connection classBoris Kolpackov1-9/+16
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-01-18Add support for native SQL statement executionBoris Kolpackov1-0/+6
New test: mysql/native. New manual section: 3.9, "Executing Native SQL Statements".
2011-01-04Copyright updateBoris Kolpackov1-1/+1
2010-09-28Rename begin_transaction() to begin()Boris Kolpackov1-1/+1
2010-07-20Get rid of the session mechanism for nowBoris Kolpackov1-14/+1
Add low-level API instead.
2010-06-04Initial implementationBoris Kolpackov1-0/+40