home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / csso0301.zip / CSSPATH / KCDAXLIB.HSS next >
Text File  |  2000-02-07  |  2KB  |  39 lines

  1. /*  Copyright (c) 1998-2000 IBK-Landquart-Switzerland. All rights reserved.
  2.  *
  3.  *  Module      :  KcDaxLib.hss
  4.  *  Application :  CSS Data Accesss Library: Header
  5.  *  Author      :  Peter Koch, IBK
  6.  *
  7.  *  Date        Description                                 Who
  8.  *  --------------------------------------------------------------------------
  9.  *  Feb 1998    First release: 0.1                          P.Koch, IBK
  10.  *  Feb 1998    Release 0.12                                P.Koch, IBK
  11.  *              - generic daxConnect replaces daxConnectOra & daxConnectDB2
  12.  *              - dayYield renamed to daxSupply
  13.  *  May 1998    Release 1.0                                 P.Koch, IBK
  14.  *              - nullindicators for daxFetch and daxSupply
  15.  *              - new function daxSelectColumnType
  16.  *  Dec 1998    Rel. 1.04                                   P.Koch, IBK
  17.  *              - add daxDispose
  18.  *  Feb 2000    V2.00                                       P.Koch, IBK
  19.  */
  20. extern const daxVersion;
  21.  
  22. daxCommit(const link);
  23. daxConnect(const database, [const connection, const username, const password]);
  24. daxDatabase(const link);
  25. daxDisconnect(var& link);
  26. daxDispose(const cursor);
  27. daxDone(const cursor);
  28. daxFetch(const cursor, var& values[], [const nullind]);
  29. daxSimple(const link, const sql);
  30. daxParse(const link, const sql, [const longmax]);
  31. daxRollback(const link);
  32. daxRowsProcessed(const cursor);
  33. daxSelectColumnName(const cursor, const index);
  34. daxSelectColumnSize(const cursor, const index);
  35. daxSelectColumnType(const cursor, const index);
  36. daxSelectColumns(const cursor);
  37. daxSupply(const cursor, const& values[], [const nullind]);
  38.  
  39.