This directory contains various examples that demonstrate the use of
the GQL library.

There are:

simple.cc: How to open a database, list the tables in it and list
           drivers found.

show-table.cc: Open DB, list all tables and their metadata (table
	       schema)

pdb.cc: A more comlicated example. It shows how to query a database
	with personal data (rather comprehensive DB schema, have to
	document it) and display the results.

blob.cc: How to use BLOBs (binary large objects). BLOBs are only
           implemented in the pg (PostgreSQL) driver, since the other
           supported databases (MySQL and SQLite) don't implement
           BLOBs.

show-table.py: show-table.cc written in Python. (You must have
	       installed the GQL scripting plugin for this to work.)
