aboutsummaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)AuthorFilesLines
2013-10-19Add missing part entryBoris Kolpackov1-0/+1
2013-10-19Bump version to 2.3.0Boris Kolpackov3-6/+6
2013-10-15Proofreading fixesBoris Kolpackov1-38/+37
2013-10-15Automatically map C++11 enum classes (strong enums)Boris Kolpackov1-24/+114
2013-10-15Documentation improvementBoris Kolpackov1-2/+2
2013-10-09Document schema evolution supportBoris Kolpackov1-128/+2564
2013-09-17Add support for defining composite values inside persistent classes, etcBoris Kolpackov1-0/+24
2013-08-14Add support for object sectionsBoris Kolpackov1-801/+1600
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-03Document sub-second precision support in MySQLBoris Kolpackov1-0/+64
2013-05-21Add ability to get underlying eager pointer in weak pointersBoris Kolpackov1-0/+5
2013-04-25Add default constructor, finalized() accessor to transactionBoris Kolpackov1-3/+14
2013-04-25Add schema_catalog::drop_schema(), control schema dropping in create_schema()Boris Kolpackov1-7/+20
2013-04-23Fix documentation mistakeBoris Kolpackov1-3/+2
2013-04-10Generate add/drop foreign key migration statementsBoris Kolpackov1-18/+52
Also add the --fkeys-deferrable-mode option. General schemas generation rework.
2013-04-10Don't throw null_pointer on load operationsBoris Kolpackov1-1/+2
This can be useful during migration. Plus this should be enforced by the database.
2013-04-10Rename --output-name to --input-nameBoris Kolpackov1-4/+5
2013-03-18Add separate exception for SQLite forced rollbacksBoris Kolpackov1-0/+29
2013-02-28Proofreading fixesBoris Kolpackov1-8/+8
2013-02-28Fix typo in manualBoris Kolpackov1-1/+1
2013-02-21Add support for pattern matching (SQL LIKE)Boris Kolpackov1-0/+21
2013-02-09Update copyright yearBoris Kolpackov8-10/+10
2013-02-08Add schema_catalog::exists() functionBoris Kolpackov1-3/+11
2013-02-08Update transaction callback documentationBoris Kolpackov1-16/+28
2013-02-08Document change-tracking containersBoris Kolpackov1-30/+536
2013-02-08Remove mentioning of option we don't supportBoris Kolpackov2-6/+2
2013-02-06Respect --pdfdir --htmldir --psdir configure optionsBoris Kolpackov2-5/+8
Thanks to Hugo Mildenberger <Hugo.Mildenberger@web.de> for the patch.
2013-01-25Document new char[N] mappingBoris Kolpackov1-186/+605
2013-01-20Document custom session supportBoris Kolpackov1-10/+155
2013-01-18Document transaction callbacksBoris Kolpackov1-235/+411
2013-01-15Add support for setting SQL Server transaction isolation levelBoris Kolpackov1-7/+30
2013-01-15Document SQL Server ROWVERSION supportBoris Kolpackov1-16/+60
2012-12-12Add support for SQL name transformationsBoris Kolpackov2-0/+176
2012-12-05Documentation for multi-database supportBoris Kolpackov3-235/+1146
2012-10-29Bump version to 2.2.0.a12.2.0.a1Boris Kolpackov3-6/+6
2012-10-19Document prepared query supportBoris Kolpackov1-5/+472
2012-09-16Add support for Visual Studio 2012Boris Kolpackov1-3/+3
2012-09-16Change terminology ("additional type" to "extended type")Boris Kolpackov1-6/+6
2012-09-14Bump version to 2.1.0Boris Kolpackov2-2/+2
2012-09-13Document how to handle circular relationshipsBoris Kolpackov1-12/+166
2012-09-11Add support for mapping std::array to BLOB and char[16] to UUID typesBoris Kolpackov1-46/+63
2012-09-10Add support for alternative UTF-16 image for TEXT in SQLiteBoris Kolpackov1-4/+10
Use it to handle QString and support std::wstring on Windows.
2012-09-07Add support for passing database name as std::wstring on WindowsBoris Kolpackov1-3/+15
2012-09-06Add ability to specify SQLite vfs module in database constructorBoris Kolpackov1-1/+7
2012-09-06Rename id() to no_idBoris Kolpackov1-10/+9
2012-09-06Proofreading changesBoris Kolpackov1-9/+9
2012-09-06Remove default value from argument to make database constructors unambiguousBoris Kolpackov1-1/+1
2012-09-06Cosmetic changesBoris Kolpackov1-2/+0
2012-09-05Support for Qt QUuid persistenceBoris Kolpackov1-13/+69
This support was added to the basic sub-profile. New test: qt/common/basic. Updated the qt example to use QUuid as an object id.
2012-09-05Support for Boost uuid persistenceBoris Kolpackov1-0/+141
New Boost sub-profile: uuid. New test: boost/common/uuid. Updated the boost example to use uuid as an object id.
2012-09-04NULL handling improvementsBoris Kolpackov1-9/+17
Add support for specifying NULL-ness for types with built-in mapping. Handle Oracle [N]VARCHAR2 and SQLite FLOAT oddities using this mechanism instead of overriding it at the schema generation level. Also use the is_null argument that is passed to value_traits::init_image() to indicate whether the value can be NULL.