aboutsummaryrefslogtreecommitdiff
path: root/odb/options.cli
AgeCommit message (Collapse)AuthorFilesLines
2015-02-09Make c++14 valid value for --std2.4.0Boris Kolpackov1-1/+1
2015-02-06Update copyrightBoris Kolpackov1-1/+1
2015-01-23Handle name truncation in PostgreSQLBoris Kolpackov1-0/+8
2015-01-22Add support for warning about SQL name truncations in OracleBoris Kolpackov1-0/+9
Also detect and issue diagnostics when such truncations lead to name conflicts.
2013-09-12Add options to warn about hard additions and deletionsBoris Kolpackov1-0/+18
2013-04-26Make --changelog{,-in,-out,-dir} per-databaseBoris Kolpackov1-4/+4
2013-04-26Add --sqlite-override-null optionBoris Kolpackov1-0/+9
2013-04-25Add support for schema version tableBoris Kolpackov1-40/+73
2013-04-10Generate add/drop foreign key migration statementsBoris Kolpackov1-0/+16
Also add the --fkeys-deferrable-mode option. General schemas generation rework.
2013-04-10Generate add/drop table migration statementsBoris Kolpackov1-1/+46
2013-04-10Rename --output-name to --input-nameBoris Kolpackov1-5/+7
2013-04-10Add --changelog{,-in,-out,-dir} optionsBoris Kolpackov1-0/+38
2013-04-10Add --changelog-file-suffix and --changelog-suffix optionsBoris Kolpackov1-0/+16
2013-02-09Update copyright yearBoris Kolpackov1-1/+1
2013-01-16Add support for using custom session implementationsBoris Kolpackov1-0/+11
New option, --session-type.
2012-12-12Add support for SQL name transformationsBoris Kolpackov1-10/+102
2012-12-05Documentation for multi-database supportBoris Kolpackov1-7/+23
2012-12-03Make --export-symbol and --extern-symbole values database-prefixableBoris Kolpackov1-2/+2
2012-11-28Add support for DLL exporting of generated codeBoris Kolpackov1-0/+19
New options: --export-symbol, --extern-symbol.
2012-10-29Add support for database prefixes in command line interfaceBoris Kolpackov1-31/+31
2012-10-25Static multi-database supportBoris Kolpackov1-4/+26
Add new options (--multi-database, --default-database). Generate common code to -odb.?xx files and database-specific to -odb-<db>.?xx.
2012-10-19Completion of prepared query supportBoris Kolpackov1-2/+2
2012-10-19Initial support for prepared queriesBoris Kolpackov1-0/+10
2012-09-13Add --omit-drop and --omit-create optionsBoris Kolpackov1-0/+10
2012-09-13Add --sql-interlude and --sql-interlude-file optionsBoris Kolpackov1-0/+18
2012-09-12Implement --output-name, --generate-schema-only, and --at-once optionsBoris Kolpackov1-0/+26
2012-08-16Add support for automatically discovering accessor/modifier functionsBoris Kolpackov1-0/+78
New options: --{accessor,modifier}-regex, --{accessor,modifier}-regex-trace.
2012-04-26Make session optionalBoris Kolpackov1-2/+9
2012-03-09Add support for --show-sloc and --sloc-limit optionsBoris Kolpackov1-0/+13
2012-03-05Add support for generating schema creation code into separate C++ fileBoris Kolpackov1-2/+40
2012-02-23Add --std option that allows selecting between C++98 and C++11Boris Kolpackov1-0/+11
2012-01-29Proofreading fix1.8.0Boris Kolpackov1-1/+1
2012-01-29Update copyright yearBoris Kolpackov1-1/+1
2012-01-29Remove author field from file headerBoris Kolpackov1-1/+0
Too much effort to maintain.
2012-01-29Proofreading fixes to documentationBoris Kolpackov1-6/+6
2012-01-29Document database schema supportBoris Kolpackov1-4/+10
2012-01-27Rename --default-schema to --schemaBoris Kolpackov1-1/+1
2012-01-26Implement support for database schemaBoris Kolpackov1-0/+6
New pragma qualifier: namespace. New pragma specifier: schema. The table specifier was extended to accept a schema prefix. New option: --default- schema. The common/schema test was extended to cover the new functionality.
2012-01-25Rename --default-schema to --schema-nameBoris Kolpackov1-5/+5
2012-01-20Minor documentation fixesBoris Kolpackov1-3/+3
2012-01-20Work around SQL Server 2005 bug with long data and OUTPUT clauseBoris Kolpackov1-6/+20
2012-01-20Change short data max and default string sizes for SQL ServerBoris Kolpackov1-4/+4
Now the default short data max is 1024, non-key string size is 512 characters, and key string size is 256 characters. Also add default mapping for std::wstring.
2012-01-20Change short data limit to match that of object idBoris Kolpackov1-2/+4
Object id must never be treated as long data.
2012-01-20ODB compiler implementation, traits, and types test for SQL ServerBoris Kolpackov1-18/+38
2011-12-05Add missing mentioning of OracleBoris Kolpackov1-3/+3
2011-11-08Get rid of special tracer databaseBoris Kolpackov1-1/+1
The include, types, and pragma tests have been moved to the common/ directory while the object test has been merged into common/lifecycle. The transaction test will be re-implemented as common/ test as soon as SQL statement tracing support is merged.
2011-10-21Add --oracle-client-version option and its associated C++ type oracle_versionConstantin Michael1-0/+13
2011-10-21Make ODB Oracle awareConstantin Michael1-1/+1
2011-10-03Update options documentation with view informationBoris Kolpackov1-12/+13
2011-08-22Add --table-prefix optionBoris Kolpackov1-0/+10
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.