Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-08-30 | Statement processing/optimization base work | Boris Kolpackov | 2 | -28/+32 | |
2013-08-14 | Add support for object sections | Boris Kolpackov | 2 | -2/+75 | |
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-04-26 | Add support for extra database info in primary key | Boris Kolpackov | 1 | -1/+1 | |
Use that to handle Oracle sequence name and SQLite lax auto ids. | |||||
2013-04-25 | Add support for schema version table | Boris Kolpackov | 1 | -0/+61 | |
2013-04-10 | Clean up class order in schema generators | Boris Kolpackov | 1 | -14/+18 | |
2013-04-10 | Get rid of ALTER TABLE callback since it is the same for all databases | Boris Kolpackov | 1 | -8/+8 | |
2013-04-10 | Use single ALTER TABLE to add foreign keys on pass 2 | Boris Kolpackov | 1 | -22/+65 | |
2013-04-10 | Generate add/drop foreign key migration statements | Boris Kolpackov | 1 | -178/+261 | |
Also add the --fkeys-deferrable-mode option. General schemas generation rework. | |||||
2013-04-10 | Add NOT NULL column without default value initially as NULL | Boris Kolpackov | 1 | -11/+12 | |
2013-04-10 | Generate alter column migration statements | Boris Kolpackov | 1 | -4/+49 | |
2013-04-10 | Generate add/drop column migration statements | Boris Kolpackov | 1 | -0/+84 | |
2013-04-10 | Generate add/drop index migration statements | Boris Kolpackov | 1 | -0/+15 | |
2013-04-10 | Generate add/drop table migration statements | Boris Kolpackov | 1 | -21/+42 | |
2013-02-09 | Update copyright year | Boris Kolpackov | 9 | -9/+9 | |
2013-02-05 | Add support for change-tracking containers | Boris Kolpackov | 1 | -1/+1 | |
ODB now supports "smart" ordered containers. Such containers get extra functions for updating and deleting individual elements. Based on this functionality implement two change-tracking containers: odb::vector (equivalent to std::vector) and QOdbList (equivalent to QList). New tests: common/container/change-tracking and qt/common/container/change- tracking. | |||||
2013-01-24 | Add support for mapping char[N] to CHAR/VARCHAR database types | Boris Kolpackov | 2 | -4/+45 | |
Also improve query support for arrays (decaying). | |||||
2013-01-14 | Add support for MSSQL ROWVERSION | Boris Kolpackov | 2 | -18/+157 | |
ODB can now use ROWVERSION column as an optimistic concurrency version. | |||||
2012-12-12 | Add support for SQL name transformations | Boris Kolpackov | 3 | -23/+12 | |
2012-11-21 | Add dynamic multi-database query support | Boris Kolpackov | 1 | -5/+11 | |
2012-10-08 | Ground work for multi-database support | Boris Kolpackov | 1 | -1/+2 | |
All generated code now includes database id. The database-specific database class interface has been updated to include all the database operations. The database-specific tests now use this interface. | |||||
2012-09-16 | Set explicit unlimited size for MSSQL TEXT, NTEXT, and IMAGE types | Boris Kolpackov | 1 | -0/+8 | |
2012-09-04 | NULL handling improvements | Boris Kolpackov | 1 | -23/+25 | |
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. | |||||
2012-08-15 | Add support for member accessors/modifiers | Boris Kolpackov | 1 | -0/+35 | |
New pragmas: get, set, access. New test: common/access. | |||||
2012-08-15 | Factor out check for SQL Server long data | Boris Kolpackov | 5 | -88/+56 | |
2012-07-27 | Move indexes from model scope to table scope | Boris Kolpackov | 1 | -14/+0 | |
Conceptually, indexes belong to tables and some databases (MySQL, MSSQL) indeed treat them as such (i.e., you can have indexes with the same name in different tables). | |||||
2012-07-17 | Remove unnecessary instance<> usage | Boris Kolpackov | 1 | -2/+2 | |
2012-07-17 | Implement multi-pass table dropping for SQL Server | Boris Kolpackov | 1 | -3/+73 | |
We have to first drop constraints before dropping tables in case the tables are dropped in a wrong order or there are circular dependencies. | |||||
2012-07-10 | Add support for custom database type mapping | Boris Kolpackov | 5 | -64/+176 | |
New pragma qualifier, map, and specifiers: as, to, from. New tests: <database>/custom. | |||||
2012-06-29 | Cosmetic changes | Boris Kolpackov | 1 | -1/+1 | |
2012-04-27 | Add support for NULL pointers to objects with composite object ids | Boris Kolpackov | 1 | -0/+43 | |
2012-04-25 | Fix auto id handling in polymorphic objects | Boris Kolpackov | 1 | -1/+4 | |
2012-04-23 | Polymorphic inheritance support | Boris Kolpackov | 4 | -147/+59 | |
2012-03-07 | Use RAII to free select statement results | Boris Kolpackov | 2 | -18/+1 | |
2012-03-05 | Add support for generating schema creation code into separate C++ file | Boris Kolpackov | 1 | -3/+3 | |
2012-02-22 | Add support for composite object ids | Boris Kolpackov | 6 | -533/+72 | |
New pragma id_type (member). New test: common/composite-id. The composite example has also been updated. | |||||
2012-01-29 | Update copyright year | Boris Kolpackov | 8 | -8/+8 | |
2012-01-29 | Remove author field from file header | Boris Kolpackov | 8 | -8/+0 | |
Too much effort to maintain. | |||||
2012-01-26 | Implement support for database schema | Boris Kolpackov | 3 | -15/+42 | |
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-20 | Work around SQL Server 2005 bug with long data and OUTPUT clause | Boris Kolpackov | 2 | -3/+95 | |
2012-01-20 | Add integers in ODB compiler instead of generated code | Boris Kolpackov | 1 | -2/+2 | |
2012-01-20 | Change short data max and default string sizes for SQL Server | Boris Kolpackov | 1 | -1/+2 | |
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-20 | Customize generated pointer column wrapper ctor | Boris Kolpackov | 1 | -0/+12 | |
For SQL Server we need to be able to pass precision/scale. | |||||
2012-01-20 | Query support for SQL Server | Boris Kolpackov | 3 | -17/+80 | |
2012-01-20 | Add missing static_cast | Boris Kolpackov | 1 | -4/+6 | |
2012-01-20 | Add support for case where we don't send auto object id in INSERT | Boris Kolpackov | 1 | -0/+1 | |
2012-01-20 | Use 1 and 0 instead of TRUE and FALSE as boolean literals in SQL Server | Boris Kolpackov | 1 | -6/+0 | |
After all, it doesn't seem to have these names. | |||||
2012-01-20 | Add support for defining composite value type as class template ↵ | Boris Kolpackov | 1 | -2/+2 | |
instantiations (mssql) | |||||
2012-01-20 | Handle delayed result set freeing in all places | Boris Kolpackov | 1 | -3/+8 | |
2012-01-20 | Correct NULL handling in object pointers | Boris Kolpackov | 1 | -4/+6 | |
2012-01-20 | ODB compiler implementation, traits, and types test for SQL Server | Boris Kolpackov | 8 | -0/+3501 | |