aboutsummaryrefslogtreecommitdiff
path: root/NEWS
AgeCommit message (Collapse)AuthorFilesLines
2012-01-29Document database schema supportBoris Kolpackov1-0/+6
2012-01-27Rename --default-schema to --schemaBoris Kolpackov1-2/+1
2012-01-25Rename --default-schema to --schema-nameBoris Kolpackov1-0/+3
2012-01-22Change default Oracle std::string mapping to 512 from 4000Boris Kolpackov1-0/+3
2012-01-20Add NEWS entry for SQL Server supportBoris Kolpackov1-0/+7
2012-01-08Add support for defining composite value type as class template instantiationsBoris Kolpackov1-0/+7
2011-12-05Update NEWS file1.7.0Boris Kolpackov1-10/+11
2011-12-05Handle microsecond resolution in PostgreSQL Qt date-time mappingsBoris Kolpackov1-0/+4
2011-12-01NEWS file entry for Oracle supportBoris Kolpackov1-27/+33
2011-11-09Update NEWS file with tracing support entryBoris Kolpackov1-2/+5
2011-11-08Document optimistic concurrencyBoris Kolpackov1-5/+6
2011-11-03Update NEWS file1.7.0.a1Boris Kolpackov1-0/+5
2011-11-02Update NEWS file with entry for optimistic concurrencyBoris Kolpackov1-0/+3
2011-11-02Add result_iterator::id() function that returns id without loading objectBoris Kolpackov1-0/+4
2011-10-27Add support for persistent classes without object idsBoris Kolpackov1-0/+5
New pragma id (object). New test: common/no-id.
2011-10-21News entry for readonly members, objects, and valuesBoris Kolpackov1-0/+9
2011-10-03Update NEWS filesBoris Kolpackov1-13/+24
2011-09-21Rework const object handlingBoris Kolpackov1-0/+5
Now objects are always loaded as non-const and the object cache in session treats all objects as non-const.
2011-09-20Update documentation with new query syntax for pointers and compositesBoris Kolpackov1-9/+17
2011-08-30Document new connection constructor and create() factory callbackBoris Kolpackov1-0/+7
2011-08-28Document wrapper support for composite values and containersBoris Kolpackov1-10/+12
2011-08-26Add support for specifying client character set for MySQL databaseBoris Kolpackov1-0/+4
2011-08-24Document transaction multiplexingBoris Kolpackov1-0/+4
2011-08-23Cosmetic changeBoris Kolpackov1-1/+1
2011-08-22Document odb::connectionBoris Kolpackov1-1/+6
2011-08-22Add database::erase_query() functionBoris Kolpackov1-0/+6
New test: common/erase-query. Documentation is in Section 3.9, "Deleting Persistent Objects". The current implementation does not work well with the session (no removal of the erased objects from the cache).
2011-08-22Enable foreign key constraints checking in SQLiteBoris Kolpackov1-0/+9
Due to bugs in SQLite DDL foreign key support, we have to temporarily disable foreign keys when re-creating the schema. New manual section: 12.5.3, "Foreign Key Constraints".
2011-08-22Add --table-prefix optionBoris Kolpackov1-0/+4
Assign unique table prefixes to most examples. This makes sure that we don't end up with broken schemas where half of the tables were changed by the next test and the other half has foreign keys that now point to nowhere.
2011-08-04Update NEWS file with new featuresBoris Kolpackov1-3/+20
2011-07-28Documentation for std::vector<char> to BLOB mappingBoris Kolpackov1-0/+6
2011-07-25Proofread NEWS fileBoris Kolpackov1-21/+21
2011-07-25Add entry about PostgreSQL supportBoris Kolpackov1-0/+6
2011-07-24Update NEWS file with entries for default and options pragmasBoris Kolpackov1-1/+10
2011-07-22Change section orderBoris Kolpackov1-1/+1
2011-07-20Update NEWS files with new NULL handlingBoris Kolpackov1-0/+26
2011-07-04Implement support for database operations callbacksBoris Kolpackov1-0/+8
New object pragma: callback. New test: common/callback. New manual section: 10.1.4, "callback".
2011-06-29Add --include-regex and --include-regex-trace optionsBoris Kolpackov1-0/+9
This requires libcutl update.
2011-04-26Update NEWS fileBoris Kolpackov1-5/+27
2011-04-24Add --odb-{prologue,epilogue}-file optionsBoris Kolpackov1-0/+3
2011-04-24Implement id_type value type pragmaBoris Kolpackov1-0/+8
2011-04-05Update NEWS file1.3.0Boris Kolpackov1-3/+13
2011-03-31Update NEWS fileBoris Kolpackov1-0/+6
2011-03-15Updates to NEWS fileBoris Kolpackov1-24/+30
2011-03-14Update NEWS to reflect boost profile additionsConstantin Michael1-0/+7
Insert boost profile chapter into manual TOC
2011-03-01Add short option aliases for --generate-query and --generate-schemaBoris Kolpackov1-0/+2
2011-03-01Add support for embedded database schemasBoris Kolpackov1-4/+13
New options: --schema-format, --default-schema. New example: schema/embedded.
2011-02-25Rename schema example to schema/customBoris Kolpackov1-2/+2
2011-02-21Add recoverable, connection_lost, and timeout exceptionsBoris Kolpackov1-0/+6
The deadlock exception now inherits from recoverable. New manual section: 3.5, "Error Handling and Recovery".
2011-02-21Validate connection in MySQL pool factoryBoris Kolpackov1-0/+4
This will help deal with the MySQL server closing connections after a certain period of inactivity.
2011-02-18Add odb::core namespace to be used in using-directivesBoris Kolpackov1-1/+19
Port all the examples and tests.