mSQLBase API                               Klaus Thiele (kth@oblib.teuto.de)
----------------------------------------------------------------------------

  o Edit the Makefile
    Change the pathnames to your environment
    
  o Type 'make' to build libSqlBase.a

  o Type 'make install' and 'make install.man' to install 
    the files to the destination directories

  o Try to write/port your own SQLBase Program :-)


  Testprograms/Examples:

    o There are subdirs with some testprograms (capi, examples)

       o Edit the Makefiles

       o Create the database 'SQLBASE'

          o msqladmin create SQLBASE
          o ( change msql.acl  )
          o ( msqladmin reload )
          o create the testtable
            msql SQLBASE < PERSDAT.dump

       o Try to compile the examples


Problems:

    I'm using the Makefiles on Linux with GNU-make, on other systems you
    have to add some more libs (-lsocket -lnsl ...)
    (perhaps you must completly rewrite the makefiles :-| to use them with
     a non GNU-make)

    If you got linker errors about undefined externals like '_stream_' i.e.
    when you compile a C-program linked with libSqlBase.a, you have to add
    the C++-libs (at our NCR box at work, i have to add -liostream, at an old
    linux box with gcc/g++ 2.5.3 i have to add -lg++ ).

