This directory is a fork of /database dir. And 
is initially a test place using CORBA to 
connect server/gxdd with clients.

Currently this dir only hold some test code
to learn more about corba.

Thought if first step would be to carefully 
design a user API to access the database.

First thought was to use the somewhat working
object API currently deployed in database/.
But currently I know to little about it to
say wheter its good or bad to use. It feels
more bad than good though :), especilly the
filter functionallity.

Anyway having a settled API, the code could
be in a "just-make-it-work" state, to begin 
using it.

It seems the approach would be using similar
table-plugins as the database/. I have no
other idea.

Here is a short manifest of functions that would
build up the plugin, for each database table.

- convert corba struct to/from C table struct
  example: DbTableHost <-> DB_host
    where DbTableHost struct comes from IDL.
    code example:
      DB_host     * convert_from(DbTableHost * host);
      DbTableHost * convert_to(DB_host * host);
