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

 num of connections = 10;   ( MAX_CONN, sql_priv.h )
 num of open cursors = 20   ( MAX_CURSORS, sql_priv.h )
 num of bind variables = 40 ( MAX_BIND_VARS, sql_priv.h )
 len of bind variables = 32 ( BINDVAR_LEN, sql_priv.h )
 largest statement = 10240  ( MAX_STMT_SIZE, sql_priv.h )

 currently only UPPERCASE Database/Table/Columnnames supported!!

 only following sqlbase-datatypes (i.e. msql-datatypes) supported:

   SQLPBUF   /* buffer                   */
   SQLPSTR   /* string (zero terminated) */
   SQLPUCH   /* unsigned char            */
   SQLPSCH   /* char                     */
   SQLPUIN   /* unsigned int             */
   SQLPSIN   /* int                      */
   SQLPULO   /* unsigned long            */
   SQLPSLO   /* long                     */
   SQLPFLT   /* float                    */
   SQLPDOU   /* double                   */
   SQLPDAT   /* date (char 10) !?!       */
   SQLPTIM   /* time (char  8) !?!       */

... and, of course, the limitations of mSQL.

