aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2015-02-09Make c++14 valid value for --std2.4.0Boris Kolpackov6-3/+14
2015-02-07Fix incorrect dateBoris Kolpackov1-1/+1
2015-02-07Update prerequisite informationBoris Kolpackov1-1/+1
2015-02-07NEWS file proofreading changesBoris Kolpackov1-11/+11
2015-02-07Bump version to 2.4.0Boris Kolpackov5-11/+11
2015-02-07Fix to work with GCC 5Boris Kolpackov10-166/+183
2015-02-06Update copyrightBoris Kolpackov240-242/+242
2015-02-06Add support for persisting std::dequeBoris Kolpackov2-3/+5
2015-02-06Implement join types support in viewsBoris Kolpackov9-19/+210
2015-02-05Implement result modifiers in view query conditionBoris Kolpackov10-14/+183
2015-02-04Implement object loading viewsBoris Kolpackov37-1271/+2776
See section 10.2 in the manual for details.
2015-02-02Give more precise requirements for object id typeBoris Kolpackov1-5/+6
2015-01-27Bump version to 2.4.0.a6Boris Kolpackov2-5/+5
2015-01-26Document SQL Server stored procedure supportBoris Kolpackov2-1/+155
2015-01-26Add column count to composite value traitsBoris Kolpackov1-0/+3
This will hopefully be enough to implement SQL Server TVP (Table-Valued Parameters) in runtime only, when we get to it.
2015-01-26Make #pragma once workBoris Kolpackov3-4/+86
2015-01-23Diagnose lack of default constructor in pointed-to objectsBoris Kolpackov2-2/+28
Lack of the default constructor will lead to uncompilable generated code.
2015-01-23Handle SQL name limits in MySQL and SQL ServerBoris Kolpackov3-9/+38
2015-01-23Handle name truncation in PostgreSQLBoris Kolpackov9-22/+142
2015-01-22Add support for warning about SQL name truncations in OracleBoris Kolpackov7-12/+197
Also detect and issue diagnostics when such truncations lead to name conflicts.
2015-01-21Fix bug in alias-declaration handlingBoris Kolpackov1-2/+1
Apparently for alias-declaration (but not ordinary typedef) we need to check for template info on the main variant.
2014-12-30Fix typoBoris Kolpackov1-1/+1
2014-12-17Bump version to 2.4.0.a5Boris Kolpackov2-5/+5
2014-12-15Fix bug in id-based custom view join of polymorphic objectsBoris Kolpackov2-14/+22
See email from Mikhail.Tomilov@infotecs.ru/12-Dec-2014.
2014-12-10Add commentsBoris Kolpackov1-5/+5
2014-12-03Improve bulk operations documentationBoris Kolpackov1-3/+14
2014-11-28Document bulk operation supportBoris Kolpackov2-2/+457
2014-11-26Implement optimistic concurrency support in bulk operationsBoris Kolpackov5-41/+218
Bulk update and SQL Server ROWVERSION not yet supported.
2014-11-26Reimplement image copying for OracleBoris Kolpackov1-1/+1
Now we no longer "steal" descriptors (destructive copy). Instead, for LOBs, we clone the locator using OCILobAssign(). For date-time types we extract the data during copying. As a result of this change we no longer need to track image changes and rebind the statements.
2014-11-25Implement bulk database operation support for Oracle and SQL ServerBoris Kolpackov19-13/+710
2014-11-19Bump version to 2.4.0.a4Boris Kolpackov2-5/+5
2014-11-19Allow empty runtime and execute viewsBoris Kolpackov4-57/+74
Use them to handle INSERT/UPDATE SQL Server stored procedures.
2014-11-10Implement {query,execute}_{one,value}() shortcut functionsMichael Shepanski2-49/+170
Useful in situations where the query is know to return at most one element (*_one) or exactly one element (*_value).
2014-10-30Allow lambdas & std::functions as query factories with C++-98 builds of libodbMichael Shepanski1-12/+40
2014-10-27Use expansion point rather than macro location in GCC 4.7.0 and laterBoris Kolpackov5-8/+25
2014-09-19Add stderr_full_tracer that additionally traces statement preparationBoris Kolpackov2-3/+17
2014-09-19Avoid clashes between nested composites in query columnsBoris Kolpackov2-6/+47
2014-09-19Fix bug in query types exporting codeBoris Kolpackov1-1/+1
2014-09-07Add support for calling MySQL stored proceduresBoris Kolpackov2-14/+151
2014-09-06Fix bug in view query assembly for stored procedure callBoris Kolpackov1-1/+1
2014-09-05Use scope of name used in pragma for template instantiationsBoris Kolpackov4-8/+23
2014-09-01Fix bug in soft-delete example in manual (deleted_data)Boris Kolpackov1-1/+4
2014-08-29Pass non-const image to clone_image(), copy_image()Boris Kolpackov2-4/+8
This is necessary since some databases need to steal stuff from the original image (e.g., LOB descriptors in Oracle).
2014-08-21Use different suffix for composite values in query columnsBoris Kolpackov1-5/+9
This avoids potential name clash between the class name and its members (both of which, before this fix, had the _type_ suffix).
2014-08-18Diagnose index definition on inverse memberBoris Kolpackov1-1/+9
2014-08-06Make sure persistent class templates are fully instantiatedBoris Kolpackov1-6/+17
2014-08-01Bump version to 2.4.0.a3Boris Kolpackov2-5/+5
2014-08-01Add support for defining persistent objects as class template instantiationsBoris Kolpackov4-3/+97
2014-07-02Handle UTF-8 BOM in input fileBoris Kolpackov1-0/+22
2014-06-23Cut out pointer-to-id traversal so that we don't go into composite idsBoris Kolpackov3-0/+24