aboutsummaryrefslogtreecommitdiff
path: root/odb/mysql/database.hxx
AgeCommit message (Collapse)AuthorFilesLines
2011-08-26Add support for specifying client character set for MySQL databaseBoris Kolpackov1-0/+13
2011-08-24Add support for transaction multiplexingBoris Kolpackov1-1/+1
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-12/+8
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-29Bring in other execute() overloads from odb::databaseBoris Kolpackov1-0/+2
2011-01-18Add support for native SQL statement executionBoris Kolpackov1-0/+4
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-09-21Cosmetic changesBoris Kolpackov1-2/+2
2010-09-14Add argc/argv database ctorBoris Kolpackov1-7/+35
2010-09-09Rework MySQL header inclusionBoris Kolpackov1-12/+1
2010-09-03Add support for MinGW buildBoris Kolpackov1-3/+4
2010-08-30Support for automake and VC++ buildsBoris Kolpackov1-2/+17
2010-08-18Move shared_ptr to the details namespaceBoris Kolpackov1-2/+3
2010-08-03Add version inclusion, other cosmetic changesBoris Kolpackov1-2/+3
2010-07-20Get rid of the session mechanism for nowBoris Kolpackov1-3/+0
Add low-level API instead.
2010-06-04Initial implementationBoris Kolpackov1-0/+160