diff options
Diffstat (limited to 'schema/embedded/README')
-rw-r--r-- | schema/embedded/README | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/schema/embedded/README b/schema/embedded/README index fc76d04..da99173 100644 --- a/schema/embedded/README +++ b/schema/embedded/README @@ -46,6 +46,14 @@ driver.cxx objects, performs a database query, and prints the information about the returned objects. +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 person-odb.cxx +c++ -DDATABASE_MYSQL -c driver.cxx +c++ -o driver driver.o person-odb.o -lodb-mysql -lodb + To run the driver, using MySQL as an example, we can execute the following command: |