From 60b5ffdef2be52e519ea6fc0927c6af4fc086cc5 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 10 Sep 2012 15:27:52 +0200 Subject: Describe commands necessary to manually compile and link each example --- schema/custom/README | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'schema/custom') diff --git a/schema/custom/README b/schema/custom/README index 77febef..22a14cb 100644 --- a/schema/custom/README +++ b/schema/custom/README @@ -48,6 +48,14 @@ driver.cxx and persists them in the database. Finally, the driver 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 employee-odb.cxx +c++ -DDATABASE_MYSQL -c driver.cxx +c++ -o driver driver.o employee-odb.o -lodb-mysql -lodb + To run the driver, using MySQL as an example, we can execute the following command: -- cgit v1.1