diff options
Diffstat (limited to 'relationship')
-rw-r--r-- | relationship/README | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/relationship/README b/relationship/README index dd9f085..eea26aa 100644 --- a/relationship/README +++ b/relationship/README @@ -50,6 +50,14 @@ driver.cxx driver performs a database query which uses a data member from a related object in its criterion. +To compile and link the example manually from the command line we can use +the following commands (using MySQL as an example; replace 'c++' with your +C++ compiler name): + +c++ -c employee-odb.cxx +c++ -DDATABASE_MYSQL -c driver.cxx +c++ -o driver driver.o employee-odb.o -lodb-mysql -lodb + To run the example we may first need to create the database schema (for some database systems, such as SQLite, the schema is embedded into the generated code which makes this step unnecessary). Using MySQL as an example, this |