summaryrefslogtreecommitdiffstats
path: root/examples/sql/sqltable/README
diff options
context:
space:
mode:
Diffstat (limited to 'examples/sql/sqltable/README')
-rw-r--r--examples/sql/sqltable/README18
1 files changed, 18 insertions, 0 deletions
diff --git a/examples/sql/sqltable/README b/examples/sql/sqltable/README
new file mode 100644
index 000000000..701458835
--- /dev/null
+++ b/examples/sql/sqltable/README
@@ -0,0 +1,18 @@
+This SQL table example retquires a connection to a SQL database.
+Modify main.cpp to connect to your specific database.
+
+This example program expects a table called 'simpletable' to exist in
+the database. You can create this table by running the following SQL
+script (modify to suit your backend, if necessary):
+
+drop table simpletable;
+create table simpletable
+(id number primary key,
+name varchar(20),
+address varchar(20) );
+
+-- optional, some sample data
+insert into simpletable (id, name, address)
+values (1, 'Trond', 'Oslo');
+insert into simpletable (id, name, address)
+values (2, 'Dave', 'Oslo');