Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-01-29 | Fix incorrect copyright holder | Boris Kolpackov | 10 | -10/+10 | |
2012-01-29 | Update copyright year | Boris Kolpackov | 97 | -97/+97 | |
2012-01-29 | Remove author field from file header | Boris Kolpackov | 149 | -149/+0 | |
Too much effort to maintain. | |||||
2012-01-17 | Autotools and VC++ build support for SQL Server | Boris Kolpackov | 9 | -3/+401 | |
2012-01-16 | Misc fixes | Boris Kolpackov | 5 | -5/+5 | |
2012-01-16 | Add SQL Server support | Boris Kolpackov | 27 | -46/+427 | |
2012-01-08 | Add support for defining composite value type as class template instantiations | Boris Kolpackov | 3 | -6/+27 | |
2011-12-05 | Bump version to 1.7.01.7.0 | Boris Kolpackov | 1 | -1/+1 | |
2011-12-05 | Add link to licensing overview page | Boris Kolpackov | 1 | -0/+6 | |
2011-12-05 | Update Oracle runtime license | Boris Kolpackov | 1 | -7/+8 | |
2011-12-01 | Instantiate QCoreApplication in Qt tests/examples | Boris Kolpackov | 1 | -0/+4 | |
It performs Qt initialization/finalization and without it bad things will happen (like deleting TLS keys that don't belong to Qt). | |||||
2011-12-01 | Correct license information | Boris Kolpackov | 2 | -2/+2 | |
2011-12-01 | Make sure PostgreSQL psql driver stops at first error and exits with error code | Boris Kolpackov | 2 | -2/+2 | |
2011-12-01 | Get rid of unused variable and warning | Boris Kolpackov | 1 | -2/+2 | |
2011-12-01 | Cosmetic changes | Boris Kolpackov | 1 | -2/+2 | |
2011-11-30 | Cosmetic automake changes | Boris Kolpackov | 7 | -25/+25 | |
2011-11-28 | Clear shell variables before appending | Boris Kolpackov | 6 | -1/+20 | |
2011-11-28 | Corrections to Oracle test scripts for Windows | Constantin Michael | 2 | -3/+4 | |
2011-11-28 | Corrections to Oracle user configuration script | Constantin Michael | 1 | -4/+4 | |
2011-11-25 | Corrections to Oracle user configuration script | Constantin Michael | 1 | -10/+8 | |
2011-11-24 | Add Oracle to automake and Visual Studio build | Constantin Michael | 9 | -2/+397 | |
2011-11-18 | Aesthetic changes | Constantin Michael | 2 | -5/+4 | |
2011-11-18 | Simplify drop table SQL for Oracle | Constantin Michael | 1 | -8/+1 | |
2011-11-18 | Correct erroneously quoted table identifier | Constantin Michael | 1 | -1/+1 | |
2011-11-18 | Revert to using an unsigned type for the custom schema example employee ID | Constantin Michael | 1 | -1/+1 | |
2011-11-18 | Include missing header file | Constantin Michael | 1 | -0/+1 | |
2011-11-18 | Use most descriptive table prefixes possible for Oracle examples | Constantin Michael | 2 | -2/+2 | |
2011-11-18 | Use default client character sets for Oracle examples | Constantin Michael | 15 | -15/+15 | |
2011-11-18 | Correct license in file headers | Constantin Michael | 4 | -4/+4 | |
2011-11-17 | Add examples for Oracle | Constantin Michael | 33 | -16/+639 | |
2011-11-02 | Bump version to 1.7.0.a11.7.0.a1 | Boris Kolpackov | 1 | -1/+1 | |
2011-11-02 | Add example for optimistic concurrency support | Boris Kolpackov | 7 | -0/+482 | |
2011-10-19 | Mention autotools as prerequisite in INSTALL-GIT | Boris Kolpackov | 1 | -3/+9 | |
2011-10-03 | Don't add -framework OS X option to CPPFLAGS1.6.01.6 | Boris Kolpackov | 1 | -4/+0 | |
It is only necessary in LDFLAGS and adding it to CPPFLAGS causes warnings. | |||||
2011-10-03 | Bump version to 1.6.0 | Boris Kolpackov | 1 | -1/+1 | |
2011-10-03 | Proofreading changes | Boris Kolpackov | 4 | -46/+61 | |
2011-10-02 | Add simple view to hello example | Boris Kolpackov | 3 | -2/+36 | |
2011-09-27 | Fix invalid configure option name | Boris Kolpackov | 1 | -1/+1 | |
2011-09-27 | Add view example | Boris Kolpackov | 6 | -1/+860 | |
2011-09-20 | Bump version to 1.6.0.a21.6.0.a2 | Boris Kolpackov | 1 | -1/+1 | |
2011-09-20 | Change query syntax to use . for composite and -> for object pointer access | Boris Kolpackov | 6 | -6/+6 | |
Also make non-inverse query columns act as both an object pointer and a normal column. The latter allows us to use natural expressions such as query<employee>::employer.is_null (). | |||||
2011-08-28 | Support multiple .sql files | Boris Kolpackov | 1 | -2/+3 | |
2011-08-24 | Set more sane table prefix | Boris Kolpackov | 1 | -1/+1 | |
2011-08-22 | Bump version to 1.6.0.a11.6.0.a1 | Boris Kolpackov | 1 | -1/+1 | |
2011-08-22 | Enable foreign key constraints checking in SQLite | Boris Kolpackov | 12 | -23/+139 | |
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-22 | Add --table-prefix option | Boris Kolpackov | 12 | -11/+22 | |
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-04 | Add support for boost::optional and boost::shared_ptr as value wrappers | Boris Kolpackov | 3 | -13/+57 | |
New test: boost/common/optional. | |||||
2011-08-04 | Add support for value wrappers | Boris Kolpackov | 2 | -4/+36 | |
Wrapper is a class that wraps another type. Examples of wrappers are various smart pointers, holders, etc. A wrapper can be transparent or it can handle the NULL semantics. The new odb::nullable class template is a NULL wrapper that helps to add the NULL semantics to a value type. New test: common/wrapper. | |||||
2011-07-27 | Bump version to 1.6.0 | Boris Kolpackov | 1 | -1/+1 | |
2011-07-25 | Export variable separately to be compatible with POSIX shell1.5.0 | Boris Kolpackov | 1 | -1/+2 | |