aboutsummaryrefslogtreecommitdiff
path: root/common/relationship
AgeCommit message (Collapse)AuthorFilesLines
2015-02-07Fix to use traditional const styleBoris Kolpackov1-1/+1
2015-02-06Update copyrightBoris Kolpackov9-9/+9
2014-06-03Support for VC12 (2013), initial workBoris Kolpackov3-3/+12
2013-12-12Fix invalid paths in makefilesBoris Kolpackov3-15/+15
2013-12-04Implement on_delete pragma for object pointersBoris Kolpackov12-5/+701
Translates to the ON DELETE SQL clause.
2013-07-08Add support for Visual Studio 2005Boris Kolpackov1-2/+4
2013-06-21Add support for running tests in dynamic multi-database modeBoris Kolpackov1-16/+13
Only possible in the development build system at this stage.
2013-06-13Handle --database option directly in automake and VC++ projectsBoris Kolpackov1-3/+4
2013-06-03Use database name in options and driver files (build part)Boris Kolpackov1-1/+1
This way we will be able to have several databases configured at the same time, which is needed for multi-database support testing.
2013-02-09Update copyright yearBoris Kolpackov3-3/+3
2012-09-16Add support for Visual Studio 2012Boris Kolpackov1-1/+3
2012-03-01Make sure we have same container members in all configurationsBoris Kolpackov1-0/+4
2012-02-29Support for C++11 std::unique_ptr as object pointerBoris Kolpackov2-3/+50
This includes the odb::lazy_unique_ptr implementation.
2012-02-28Test std::shared_ptr in C++11 mode and std::tr1::shared_ptr in C++98 modeBoris Kolpackov2-9/+14
2012-02-24C++11 support (pass --std ODB compiler option in build makefiles)Boris Kolpackov1-1/+5
2012-02-24C++11 support (initial infrastructure)Boris Kolpackov1-0/+1
2012-01-29Update copyright yearBoris Kolpackov3-3/+3
2012-01-29Remove author field from file headerBoris Kolpackov3-3/+0
Too much effort to maintain.
2011-10-24Add t_ prefix to all the common tests that conflict with examplesBoris Kolpackov1-1/+1
2011-10-21Remove common_ from all table_prefix arguments in common testsConstantin Michael1-1/+1
2011-09-20Change query syntax to use . for composite and -> for object pointer accessBoris Kolpackov1-1/+1
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-24Make tests use unique table prefixesBoris Kolpackov1-1/+1
2011-07-19New design for NULL semanticsBoris Kolpackov1-2/+3
Now, instead of being specified as part of the SQL type with the type pragma, there are separate null and not_null pragmas. The not_null pragma was used to control NULL-ness of object pointers. Now the two pragmas are used consistently for object pointers and simple values (and in the future will work for composite values and containers).
2011-03-28Recode tests to work with implementations lacking result::size()Boris Kolpackov1-1/+2
2011-03-27Fix issues preventing building outside source directoryBoris Kolpackov1-3/+3
2011-02-25Add support for tests in subdirectoriesBoris Kolpackov1-1/+1
2011-02-18Add odb::core namespace to be used in using-directivesBoris Kolpackov1-1/+1
Port all the examples and tests.
2011-01-24Workaround VC 10 bug1.1.0Boris Kolpackov1-1/+1
2011-01-04Copyright updateBoris Kolpackov3-3/+3
2010-12-13Detect TR1 <memory> availabilityBoris Kolpackov3-44/+7
Also use the wrapper header from libodb.
2010-12-09Cosmetic change (rename naked pointer to raw pointer)Boris Kolpackov1-1/+1
2010-12-09Add lazy pointer supportBoris Kolpackov1-11/+8
Built-in support is provided for raw, auto, and tr1 shared/weak pointers. New test: common/lazy-ptr.
2010-11-28Simplify tests by using literal namesBoris Kolpackov1-18/+13
2010-11-26Save test result to a temp file instead of piping it to diffBoris Kolpackov1-1/+4
This makes tests more robust.
2010-11-25Add support for object pointers in queryBoris Kolpackov2-1/+17
2010-11-24Keep track of extra headers for the dist targetBoris Kolpackov1-1/+2
2010-11-22Use new pointer-based database operation overloadsBoris Kolpackov1-8/+8
2010-11-17Add support for unidirectional object relationshipsBoris Kolpackov5-0/+528
New test: common/relationship.