aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite
AgeCommit message (Collapse)AuthorFilesLines
2016-08-14Various build2-related fixesBoris Kolpackov3-4/+4
2016-08-08Recognize WITH as beginning of complete queryBoris Kolpackov1-1/+3
2016-08-08Initial build2 build supportBoris Kolpackov5-1/+181
2016-08-07Minor config file restructuring in preparation for build2 supportBoris Kolpackov3-5/+14
2016-08-05Adjust to threading API changes in libodbBoris Kolpackov2-3/+3
2016-06-15Bump version to 2.5.0.a8Boris Kolpackov1-3/+3
2016-06-15Get rid of C++11 deprecation warnings for auto_ptr, exception specsBoris Kolpackov3-11/+11
In particular, std::auto_ptr is no longer mapped in C++11.
2016-05-06Bump version to 2.5.0.a7Boris Kolpackov1-3/+3
2016-04-06Bump version to 2.5.0.a6Boris Kolpackov1-3/+3
2016-02-12Bump version to 2.5.0.a5Boris Kolpackov1-3/+3
2016-01-27Detect if column metadata functions are availableBoris Kolpackov8-21/+27
For example, system-default build of SQLite doesn't have SQLITE_ENABLE_COLUMN_METADATA.
2016-01-20Bump version to 2.5.0.a4Boris Kolpackov1-3/+3
2015-11-30Don't try to depend on installed cli executableBoris Kolpackov1-0/+5
2015-11-09Bump version to 2.5.0.a2Boris Kolpackov1-3/+3
2015-11-09Make database class move-constructibleBoris Kolpackov7-101/+136
This means it can be returned by value from a function in C++11.
2015-09-04Add dummy source files to make Win32 export workingBoris Kolpackov3-0/+16
2015-08-31Add missing export symbolBoris Kolpackov1-1/+1
2015-07-27Bump version to 2.5.0.a1Boris Kolpackov1-3/+3
2015-07-17Handle empty query::in_range() caseBoris Kolpackov2-19/+30
2015-07-15Implement SQLite incremental BLOB/TEXT I/OBoris Kolpackov16-76/+837
2015-03-27Get pointer_type from correct traits (object, view), part 2asBoris Kolpackov2-10/+10
2015-02-07Bump version to 2.4.0Boris Kolpackov1-3/+3
2015-02-06Update copyrightBoris Kolpackov75-75/+75
2015-01-27Bump version to 2.4.0.a6Boris Kolpackov1-3/+3
2014-12-17Bump version to 2.4.0.a5Boris Kolpackov1-3/+3
2014-11-26VC12 fixesBoris Kolpackov1-4/+4
2014-11-25Get rid of trailing newlines in error messagesBoris Kolpackov1-0/+6
2014-11-25Don't try to translate duplicate primary key for auto-assigned idBoris Kolpackov1-2/+3
An auto-assigned object id should never cause a duplicate primary key.
2014-11-25Implement bulk database operation support for Oracle and SQL ServerBoris Kolpackov12-38/+100
2014-11-19Bump version to 2.4.0.a4Boris Kolpackov1-3/+3
2014-11-10Implement {query,execute}_{one,value}() shortcut functionsMichael Shepanski2-0/+182
Useful in situations where the query is know to return at most one element (*_one) or exactly one element (*_value).
2014-09-19Call tracer::prepare() before actually preparing statementBoris Kolpackov1-30/+45
This way we give the user the ability to see an invalid statement that would cause the preparation step to fail.
2014-08-01Bump version to 2.4.0.a3Boris Kolpackov1-3/+3
2014-06-03Support for VC12 (2013), initial workBoris Kolpackov3-1/+205
2014-03-19Export pooled_connection classBoris Kolpackov1-2/+2
It can be used by derived connection factories.
2014-03-01Bump version to 2.4.0.a2Boris Kolpackov1-3/+3
2013-12-12Bump version to 2.4.0.a1Boris Kolpackov1-3/+3
2013-10-21Suppress warning2.3.02.3Boris Kolpackov1-3/+1
2013-10-19Bump version to 2.3.0Boris Kolpackov1-3/+3
2013-10-09Bump version to 2.3.0.b22.3.0.b2Boris Kolpackov1-3/+3
2013-10-02Add support for SQLite 3.3.6Boris Kolpackov4-7/+139
That's what is still shipped with RHEL5.
2013-09-28Make schema version access (but not modification) thread-safeBoris Kolpackov3-5/+33
Also cache the version in statements so that we don't have to lock the mutex (slow) every time we need to check the version.
2013-09-17Bump version to 2.3.0.b12.3.0.b1Boris Kolpackov1-3/+3
2013-09-17Schema versioning supportBoris Kolpackov25-120/+607
2013-09-02Handle SQLite commit failures that don't automatically rollback transactionBoris Kolpackov1-1/+34
2013-08-14Add support for object sectionsBoris Kolpackov8-58/+337
Sections are an optimization mechanism that allows the partitioning of data members of a persistent class into groups that can be separately loaded and/or updated.
2013-07-08Add support for Visual Studio 2005Boris Kolpackov2-1/+356
2013-05-17Fix invalid export macroBoris Kolpackov1-1/+1
2013-04-25Add support for schema version tableBoris Kolpackov2-1/+99
2013-04-25Add default constructor, finalized() accessor to transactionBoris Kolpackov2-3/+11