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 --- c++11/README | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'c++11') diff --git a/c++11/README b/c++11/README index 7a9829d..fa8780b 100644 --- a/c++11/README +++ b/c++11/README @@ -54,6 +54,14 @@ driver.cxx relationships. Finally, the driver performs a database query and iterates over the result printing basic 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++ -std=c++11' +with your C++ compiler in C++11 mode): + +c++ -std=c++11 -c employee-odb.cxx +c++ -std=c++11 -DDATABASE_MYSQL -c driver.cxx +c++ -std=c++11 -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 -- cgit v1.1