home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / SqlPrint.cxx < prev    next >
C/C++ Source or Header  |  1996-05-31  |  1KB  |  48 lines

  1. /*---------------------------------------------------------------------------
  2.  *
  3.  * Copyright (c) 1995 by Cadre Technologies Inc.
  4.  *
  5.  * This software is furnished under a license and may be used only in
  6.  * accordance with the terms of such license and with the inclusion of
  7.  * the above copyright notice. This software or any other copies thereof
  8.  * may not be provided or otherwise made available to any other person.
  9.  * No title to and ownership of the software is hereby transferred.
  10.  *
  11.  * The information in this software is subject to change without notice
  12.  * and should not be construed as a commitment by Cadre Technologies Inc.
  13.  *
  14.  *---------------------------------------------------------------------------
  15.  *
  16.  *    File        : @(#)SqlPrint.cxx    1.1
  17.  *    Original date    : November 1995
  18.  *    Description    : General error handling function
  19.  *
  20.  *---------------------------------------------------------------------------
  21.  */
  22. static const char SccsId[]="@(#)SqlPrint.cxx    1.1\t20 Dec 1995 Copyright 1995 Cadre Technologies Inc.";
  23.  
  24. #ifndef SQLPRINT_HXX
  25. #include "SqlPrint.hxx"
  26. #endif
  27.  
  28. #ifndef ORACLE_HXX
  29. #include "Oracle.hxx"
  30. #endif
  31.  
  32. #include <stdlib.h>
  33. #include <iostream.h>
  34.  
  35. void sqlprint()
  36. {
  37.     char errmsg[400];
  38.     int maxSize = 400;
  39.     int actualSize;
  40.  
  41.     sqlglm(errmsg, &maxSize, &actualSize);
  42.     errmsg[actualSize] = '\0';
  43.  
  44.     cerr << "RDBMS statement failed:" << endl;
  45.     cerr << errmsg << endl;
  46. }
  47.  
  48.