Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-02-21 | Cosmetic changes | Boris Kolpackov | 1 | -1/+1 | |
2011-02-21 | Don't reuse failed connections | Boris Kolpackov | 4 | -4/+29 | |
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-02-18 | Factor out MySQL error to exception translation into separate function | Boris Kolpackov | 9 | -127/+148 | |
2011-02-15 | Add CLI as prerequisite in INSTALL-GIT | Boris Kolpackov | 1 | -3/+4 | |
2011-02-15 | Get rid of build version in INSTALL-GIT (just use latest) | Boris Kolpackov | 1 | -1/+1 | |
2011-01-24 | Bump version to 1.1.01.1.0 | Boris Kolpackov | 2 | -4/+4 | |
2011-01-18 | Add support for native SQL statement execution | Boris Kolpackov | 2 | -3/+48 | |
New test: mysql/native. New manual section: 3.9, "Executing Native SQL Statements". | |||||
2011-01-17 | Remove unneeded include | Boris Kolpackov | 1 | -1/+0 | |
2011-01-05 | Load containers in query results and delayed loading | Boris Kolpackov | 2 | -1/+9 | |
2011-01-04 | Copyright update | Boris Kolpackov | 76 | -76/+76 | |
2010-12-10 | Cosmetic changes | Boris Kolpackov | 1 | -3/+4 | |
2010-12-07 | Use mutable instead of const_cast | Boris Kolpackov | 2 | -4/+4 | |
2010-11-26 | Postpone fetching of the data for cached results | Boris Kolpackov | 4 | -48/+99 | |
This way if an object of the same type is loaded in between iteration, the fetched image won't be messed up. | |||||
2010-11-26 | Add support for recursive object loading | Boris Kolpackov | 5 | -10/+241 | |
If an object of a type needs to be loaded recursively, then it is addded to the delayed loading list which is processed once the statements are unlocked. | |||||
2010-11-24 | Add support for unordered storage of ordered containers | Boris Kolpackov | 1 | -2/+2 | |
New pragma: unordered. | |||||
2010-11-24 | Bump version to 1.1.0.a2 | Boris Kolpackov | 2 | -4/+4 | |
2010-11-22 | Make query result aware of session and const objects | Boris Kolpackov | 3 | -17/+33 | |
2010-11-22 | Use typeinfo comparator from libodb | Boris Kolpackov | 1 | -18/+2 | |
2010-11-18 | Split object image binding into in and out variants | Boris Kolpackov | 3 | -34/+63 | |
2010-11-18 | Version image types | Boris Kolpackov | 6 | -3/+142 | |
2010-11-17 | Add support for unidirectional object relationships | Boris Kolpackov | 7 | -12/+41 | |
New test: common/relationship. | |||||
2010-11-17 | Cosmetic changes | Boris Kolpackov | 1 | -2/+2 | |
2010-11-06 | Add support for container persistence | Boris Kolpackov | 19 | -572/+756 | |
Generalize statements that were used for persisting objects to work for both objects and containers. Implement a cache for container statements. | |||||
2010-10-31 | Add instructions on building from repository | Boris Kolpackov | 1 | -0/+72 | |
2010-10-27 | Implement support for composite value types | Boris Kolpackov | 2 | -1/+4 | |
New test: common/composite. | |||||
2010-10-07 | Add support for persistent classes without default ctors | Boris Kolpackov | 2 | -15/+0 | |
New test: common/ctor. | |||||
2010-10-04 | Bump version to 1.1.0.a1 | Boris Kolpackov | 2 | -4/+4 | |
2010-09-29 | Bump version to 1.0.01.0.0 | Boris Kolpackov | 2 | -4/+4 | |
2010-09-28 | Use struct consistently | Boris Kolpackov | 1 | -18/+17 | |
2010-09-28 | Rename begin_transaction() to begin() | Boris Kolpackov | 2 | -2/+2 | |
2010-09-28 | Minor documentation fixes | Boris Kolpackov | 1 | -4/+4 | |
2010-09-28 | INSTALL should be in extra_dist, not doc | Boris Kolpackov | 1 | -2/+2 | |
2010-09-28 | Update README file | Boris Kolpackov | 1 | -4/+4 | |
2010-09-28 | Use libtool only to link | Boris Kolpackov | 1 | -5/+21 | |
2010-09-27 | More fixes to pthread test | Boris Kolpackov | 1 | -4/+0 | |
2010-09-25 | Improve pthread test | Boris Kolpackov | 1 | -1/+8 | |
2010-09-25 | Remove stray semicolon | Boris Kolpackov | 1 | -1/+1 | |
2010-09-23 | Add INSTALL file | Boris Kolpackov | 2 | -1/+104 | |
2010-09-23 | Add swap(), empty(), and size() to result class template | Boris Kolpackov | 4 | -6/+41 | |
2010-09-23 | Don't call store_result after we have reached the end | Boris Kolpackov | 2 | -1/+12 | |
2010-09-23 | Use comparison instead of IS TRUE | Boris Kolpackov | 1 | -1/+5 | |
The bool type can be mapped to a non-integral type, such as string. | |||||
2010-09-23 | Move default traits implementation to default_value_traits | Boris Kolpackov | 1 | -13/+22 | |
This way traits for any type can be specialized. | |||||
2010-09-22 | Add database type id as value_traits template argument | Boris Kolpackov | 5 | -93/+308 | |
2010-09-21 | Redesign value_traits | Boris Kolpackov | 3 | -140/+108 | |
2010-09-21 | Ignore unknown command line options and arguments | Boris Kolpackov | 1 | -1/+1 | |
2010-09-21 | Cosmetic changes | Boris Kolpackov | 1 | -2/+2 | |
2010-09-20 | Rename store() to update() | Boris Kolpackov | 2 | -26/+26 | |
2010-09-20 | Cache result by default | Boris Kolpackov | 1 | -3/+6 | |
2010-09-15 | Reset active statement in statements' ctors | Boris Kolpackov | 1 | -0/+15 | |
2010-09-14 | Support fall-back dependency tracking | Boris Kolpackov | 1 | -1/+16 | |