Main Page   Modules   Compound List   File List   Compound Members   File Members   Related Pages  

sybdb.h

Go to the documentation of this file.
00001 /* FreeTDS - Library of routines accessing Sybase and Microsoft databases
00002  * Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004  Brian Bruns
00003  *
00004  * This library is free software; you can redistribute it and/or
00005  * modify it under the terms of the GNU Library General Public
00006  * License as published by the Free Software Foundation; either
00007  * version 2 of the License, or (at your option) any later version.
00008  *
00009  * This library is distributed in the hope that it will be useful,
00010  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00011  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00012  * Library General Public License for more details.
00013  *
00014  * You should have received a copy of the GNU Library General Public
00015  * License along with this library; if not, write to the
00016  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
00017  * Boston, MA 02111-1307, USA.
00018  */
00019 
00020 #ifndef _sybdb_h_
00021 #define _sybdb_h_
00022 
00023 #include "tds_sysdep_public.h"
00024 
00025 #ifndef MSDBLIB
00026 #define MSDBLIB 0
00027 #endif
00028 
00029 #ifdef __cplusplus
00030 extern "C"
00031 {
00032 #if 0
00033 }
00034 #endif
00035 #endif
00036 
00037 static const char rcsid_sybdb_h[] = "$Id: sybdb.h,v 1.64 2004/10/28 12:42:12 freddy77 Exp $";
00038 static const void *const no_unused_sybdb_h_warn[] = { rcsid_sybdb_h, no_unused_sybdb_h_warn };
00039 
00045 #ifdef FALSE
00046 #undef FALSE
00047 #endif
00048 #ifdef TRUE
00049 #undef TRUE
00050 #endif
00051 #define FALSE 0
00052 #define TRUE  1
00053 
00054 #define DBSAVE   1
00055 #define DBNOSAVE 0
00056 #define DBNOERR  -1
00057 
00058 #define INT_EXIT        0
00059 #define INT_CONTINUE    1
00060 #define INT_CANCEL      2
00061 #define INT_TIMEOUT     3
00062 
00063 #define DBMAXNUMLEN 33
00064 #define DBMAXNAME   30
00065 
00069 #define DBVERSION_UNKNOWN 0
00070 #define DBVERSION_46      1
00071 #define DBVERSION_100     2
00072 #define DBVERSION_42      3
00073 #define DBVERSION_70      4
00074 #define DBVERSION_80      5
00075 
00076 /* these two are defined by Microsoft for dbsetlversion() */
00077 #define DBVER42           DBVERSION_42
00078 #define DBVER60           DBVERSION_70  /* our best approximation */
00079 
00084 #define DBTDS_UNKNOWN           0
00085 #define DBTDS_2_0               1       /* pre 4.0 SQL Server */
00086 #define DBTDS_3_4               2       /* Microsoft SQL Server (3.0) */
00087 #define DBTDS_4_0               3       /* 4.0 SQL Server */
00088 #define DBTDS_4_2               4       /* 4.2 SQL Server */
00089 #define DBTDS_4_6               5       /* 2.0 OpenServer and 4.6 SQL Server. */
00090 #define DBTDS_4_9_5             6       /* 4.9.5 (NCR) SQL Server */
00091 #define DBTDS_5_0               7       /* 5.0 SQL Server */
00092 #define DBTDS_7_0               8       /* Microsoft SQL Server 7.0 */
00093 #define DBTDS_8_0               9       /* Microsoft SQL Server 2000 */
00094 
00095 #define DBTXPLEN 16
00096 
00097 #define BCPMAXERRS 1
00098 #define BCPFIRST 2
00099 #define BCPLAST 3
00100 #define BCPBATCH 4
00101 
00102 #define BCPLABELED 5
00103 #define BCPHINTS 6
00104 
00105 #define DBCMDNONE 0
00106 #define DBCMDPEND 1
00107 #define DBCMDSENT 2
00108 
00109 #define DBRESINIT 0
00110 #define DBRESSUCC 1
00111 #define DBRESDONE 2
00112 #define DBRESCMDS 0x80
00113 
00114 typedef int RETCODE;
00115 
00116 typedef void DBCURSOR;
00117 typedef void DBXLATE;
00118 typedef void DBSORTORDER;
00119 typedef void DBLOGINFO;
00120 typedef void *DBVOIDPTR;
00121 typedef short SHORT;
00122 typedef unsigned short USHORT;
00123 typedef int (*INTFUNCPTR) (void *, ...);
00124 typedef int (*DBWAITFUNC) (void);
00125 typedef DBWAITFUNC(*DB_DBBUSY_FUNC) (void *dbproc);
00126 typedef void (*DB_DBIDLE_FUNC) (DBWAITFUNC dfunc, void *dbproc);
00127 typedef int (*DB_DBCHKINTR_FUNC) (void *dbproc);
00128 typedef int (*DB_DBHNDLINTR_FUNC) (void *dbproc);
00129 
00130 #ifndef __INCvxWorksh
00131 /* VxWorks already defines STATUS and BOOL. Compiler gets mad if you 
00132 ** redefine them. */
00133 /* __INCvxWorksh will get #defined by std. include files included from tds.h
00134 */
00135 #ifdef STATUS
00136 /* On DU4.0d we get a conflicting STATUS definition from arpa/nameser.h
00137    when _REENTRANT is defined.
00138 */
00139 #undef STATUS
00140 #endif
00141 typedef int STATUS;
00142 #if !defined(_WINDEF_) && !defined(_WINDEF_H)
00143 typedef int BOOL;
00144 #endif
00145 #endif
00146 
00147 #if !defined(_FREETDS_LIBRARY_SOURCE) || !defined(_tds_h_)
00148 /* copied from tds.h */
00149 /* TODO find a best way... */
00150 enum
00151 {
00152         SYBCHAR = 47,           /* 0x2F */
00153 #define SYBCHAR SYBCHAR
00154         SYBVARCHAR = 39,        /* 0x27 */
00155 #define SYBVARCHAR      SYBVARCHAR
00156         SYBINTN = 38,           /* 0x26 */
00157 #define SYBINTN SYBINTN
00158         SYBINT1 = 48,           /* 0x30 */
00159 #define SYBINT1 SYBINT1
00160         SYBINT2 = 52,           /* 0x34 */
00161 #define SYBINT2 SYBINT2
00162         SYBINT4 = 56,           /* 0x38 */
00163 #define SYBINT4 SYBINT4
00164         SYBINT8 = 127,          /* 0x7F */
00165 #define SYBINT8 SYBINT8
00166         SYBFLT8 = 62,           /* 0x3E */
00167 #define SYBFLT8 SYBFLT8
00168         SYBDATETIME = 61,       /* 0x3D */
00169 #define SYBDATETIME     SYBDATETIME
00170         SYBBIT = 50,            /* 0x32 */
00171 #define SYBBIT  SYBBIT
00172         SYBTEXT = 35,           /* 0x23 */
00173 #define SYBTEXT SYBTEXT
00174         SYBIMAGE = 34,          /* 0x22 */
00175 #define SYBIMAGE        SYBIMAGE
00176         SYBMONEY4 = 122,        /* 0x7A */
00177 #define SYBMONEY4       SYBMONEY4
00178         SYBMONEY = 60,          /* 0x3C */
00179 #define SYBMONEY        SYBMONEY
00180         SYBDATETIME4 = 58,      /* 0x3A */
00181 #define SYBDATETIME4    SYBDATETIME4
00182         SYBREAL = 59,           /* 0x3B */
00183 #define SYBREAL SYBREAL
00184         SYBBINARY = 45,         /* 0x2D */
00185 #define SYBBINARY       SYBBINARY
00186         SYBVARBINARY = 37,      /* 0x25 */
00187 #define SYBVARBINARY    SYBVARBINARY
00188         SYBNUMERIC = 108,       /* 0x6C */
00189 #define SYBNUMERIC      SYBNUMERIC
00190         SYBDECIMAL = 106,       /* 0x6A */
00191 #define SYBDECIMAL      SYBDECIMAL
00192         SYBFLTN = 109,          /* 0x6D */
00193 #define SYBFLTN SYBFLTN
00194         SYBMONEYN = 110,        /* 0x6E */
00195 #define SYBMONEYN       SYBMONEYN
00196         SYBDATETIMN = 111       /* 0x6F */
00197 #define SYBDATETIMN     SYBDATETIMN
00198 };
00199 
00200 #define SYBAOPCNT  0x4b
00201 #define SYBAOPCNTU 0x4c
00202 #define SYBAOPSUM  0x4d
00203 #define SYBAOPSUMU 0x4e
00204 #define SYBAOPAVG  0x4f
00205 #define SYBAOPAVGU 0x50
00206 #define SYBAOPMIN  0x51
00207 #define SYBAOPMAX  0x52
00208 
00209 /* mssql2k compute operator */
00210 #define SYBAOPCNT_BIG           0x09
00211 #define SYBAOPSTDEV             0x30
00212 #define SYBAOPSTDEVP            0x31
00213 #define SYBAOPVAR               0x32
00214 #define SYBAOPVARP              0x33
00215 #define SYBAOPCHECKSUM_AGG      0x72
00216 
00217 #endif
00218 
00219 typedef unsigned char DBBOOL;
00220 typedef char DBCHAR;
00221 typedef unsigned char DBBIT;
00222 typedef unsigned char DBTINYINT;
00223 typedef tds_sysdep_int16_type DBSMALLINT;
00224 typedef tds_sysdep_int32_type DBINT;
00225 typedef unsigned char DBBINARY;
00226 typedef tds_sysdep_real32_type DBREAL;
00227 typedef tds_sysdep_real64_type DBFLT8;
00228 typedef unsigned tds_sysdep_int16_type DBUSMALLINT;
00229 
00230 typedef struct 
00231 {
00232         DBINT len;
00233     char  str[256];
00234 } DBVARYCHAR;
00235    
00236 typedef struct
00237 {
00238         unsigned char precision;
00239         unsigned char scale;
00240         unsigned char array[33];
00241 } DBNUMERIC;
00242 
00243 typedef DBNUMERIC DBDECIMAL;
00244 
00245 typedef struct
00246 {
00247         DBINT mnyhigh;
00248         unsigned tds_sysdep_int32_type mnylow;
00249 } DBMONEY;
00250 
00251 typedef struct
00252 {
00253         DBINT mny4;
00254 } DBMONEY4;
00255 
00256 typedef struct
00257 {
00258         DBINT dtdays;
00259         DBINT dttime;
00260 } DBDATETIME;
00261 
00262 typedef struct
00263 {
00264         DBUSMALLINT days;
00265         DBUSMALLINT minutes;
00266 } DBDATETIME4;
00267 
00268 #if MSDBLIB
00269 #define SQLCHAR SYBCHAR
00270 #endif
00271 
00272 typedef struct tds_dblib_loginrec LOGINREC;
00273 
00274 typedef unsigned char BYTE;
00275 
00276 typedef struct dbtypeinfo
00277 {
00278         DBINT precision;
00279         DBINT scale;
00280 } DBTYPEINFO;
00281 
00282 struct dbstring
00283 {
00284         BYTE *strtext;
00285         DBINT strtotlen;
00286         struct dbstring *strnext;
00287 };
00288 typedef struct dbstring DBSTRING;
00289 
00290 /* Used by dbcolinfo */
00291 enum
00292 { MAXCOLNAMELEN = 512 }; /* duplicates TDS_SYSNAME_SIZE */
00293 typedef enum { CI_REGULAR=1, CI_ALTERNATE=2, CI_CURSOR=3 } CI_TYPE;
00294 
00295 typedef struct 
00296 { 
00297     DBINT SizeOfStruct; 
00298     DBCHAR  Name[MAXCOLNAMELEN+2]; 
00299     DBCHAR  ActualName[MAXCOLNAMELEN+2]; 
00300     DBCHAR  TableName[MAXCOLNAMELEN+2]; 
00301     SHORT Type; 
00302     DBINT UserType; 
00303     DBINT MaxLength; 
00304     BYTE  Precision; 
00305     BYTE  Scale; 
00306     BOOL  VarLength; 
00307     BYTE  Null; 
00308     BYTE  CaseSensitive; 
00309     BYTE  Updatable; 
00310     BOOL  Identity; 
00311 
00312 } DBCOL; 
00313 /* end dbcolinfo stuff */
00314 
00315 
00316 
00317 /* a large list of options, DBTEXTSIZE is needed by sybtcl */
00318 #define DBPARSEONLY      0
00319 #define DBESTIMATE       1
00320 #define DBSHOWPLAN       2
00321 #define DBNOEXEC         3
00322 #define DBARITHIGNORE    4
00323 #define DBNOCOUNT        5
00324 #define DBARITHABORT     6
00325 #define DBTEXTLIMIT      7
00326 #define DBBROWSE         8
00327 #define DBOFFSET         9
00328 #define DBSTAT          10
00329 #define DBERRLVL        11
00330 #define DBCONFIRM       12
00331 #define DBSTORPROCID    13
00332 #define DBBUFFER        14
00333 #define DBNOAUTOFREE    15
00334 #define DBROWCOUNT      16
00335 #define DBTEXTSIZE      17
00336 #define DBNATLANG       18
00337 #define DBDATEFORMAT    19
00338 #define DBPRPAD         20
00339 #define DBPRCOLSEP      21
00340 #define DBPRLINELEN     22
00341 #define DBPRLINESEP     23
00342 #define DBLFCONVERT     24
00343 #define DBDATEFIRST     25
00344 #define DBCHAINXACTS    26
00345 #define DBFIPSFLAG      27
00346 #define DBISOLATION     28
00347 #define DBAUTH          29
00348 #define DBIDENTITY      30
00349 #define DBNOIDCOL       31
00350 #define DBDATESHORT     32
00351 #define DBCLIENTCURSORS 33
00352 #define DBSETTIME       34
00353 #define DBQUOTEDIDENT   35
00354 
00355 #define DBNUMOPTIONS  36
00356 
00357 #define DBPADOFF       0
00358 #define DBPADON        1
00359 
00360 #define OFF            0
00361 #define ON             1
00362 
00363 #define NOSUCHOPTION   2
00364 
00365 #define MAXOPTTEXT    32
00366 
00367 struct dboption
00368 {
00369         char opttext[MAXOPTTEXT];
00370         DBSTRING *optparam;
00371         DBUSMALLINT optstatus;
00372         DBBOOL optactive;
00373         struct dboption *optnext;
00374 };
00375 typedef struct dboption DBOPTION;
00376 
00377 typedef struct tds_dblib_dbprocess DBPROCESS;
00378 
00379 typedef struct dbdaterec
00380 {
00381 #if MSDBLIB
00382         DBINT year;
00383         DBINT month;
00384         DBINT day;
00385         DBINT dayofyear;
00386         DBINT weekday;
00387         DBINT hour;
00388         DBINT minute;
00389         DBINT second;
00390         DBINT millisecond;
00391         DBINT tzone;
00392 #else
00393         DBINT dateyear;
00394         DBINT datemonth;
00395         DBINT datedmonth;
00396         DBINT datedyear;
00397         DBINT datedweek;
00398         DBINT datehour;
00399         DBINT dateminute;
00400         DBINT datesecond;
00401         DBINT datemsecond;
00402         DBINT datetzone;
00403 #endif
00404 } DBDATEREC;
00405 
00406 typedef int (*EHANDLEFUNC) (DBPROCESS * dbproc, int severity, int dberr, int oserr, char *dberrstr, char *oserrstr);
00407 
00408 typedef int (*MHANDLEFUNC) (DBPROCESS * dbproc, DBINT msgno, int msgstate, int severity, char *msgtext, char *srvname,
00409                             char *proc, int line);
00410 
00411 /* dbpoll() result codes, sybtcl needs DBRESULT */
00412 #define DBRESULT       1
00413 #define DBNOTIFICATION 2
00414 #define DBTIMEOUT      3
00415 #define DBINTERRUPT    4
00416 
00417 /* more sybtcl needs: */
00418 #define DBTXTSLEN    8
00419 
00420 /* bind types */
00421 #define CHARBIND          0
00422 #define STRINGBIND        1
00423 #define NTBSTRINGBIND     2
00424 #define VARYCHARBIND      3
00425 #define TINYBIND          6
00426 #define SMALLBIND         7
00427 #define INTBIND           8
00428 #define FLT8BIND          9
00429 #define REALBIND          10
00430 #define DATETIMEBIND      11
00431 #define SMALLDATETIMEBIND 12
00432 #define MONEYBIND         13
00433 #define SMALLMONEYBIND    14
00434 #define BINARYBIND        15
00435 #define BITBIND           16
00436 #define NUMERICBIND       17
00437 #define DECIMALBIND       18
00438 
00439 #define DBPRCOLSEP  21
00440 #define DBPRLINELEN 22
00441 #define DBRPCRETURN 1
00442 
00443 #define REG_ROW         -1
00444 #define MORE_ROWS       -1
00445 #define NO_MORE_ROWS    -2
00446 #define BUF_FULL        -3
00447 #define NO_MORE_RESULTS 2
00448 #define SUCCEED         1
00449 #define FAIL            0
00450 
00451 #define DB_IN  1
00452 #define DB_OUT 2
00453 #define DB_QUERYOUT 3
00454 
00455 #define DBSINGLE 0
00456 #define DBDOUBLE 1
00457 #define DBBOTH   2
00458 
00459 /* remote procedure call (rpc) options */
00460 #define DBRPCRECOMPILE ((DBSMALLINT) 0x0001)
00461 #define DBRPCRESET ((DBSMALLINT) 0x0002)
00462 
00463 DBBOOL db12hour(DBPROCESS * dbprocess, char *language);
00464 BYTE *dbadata(DBPROCESS * dbproc, int computeid, int column);
00465 DBINT dbadlen(DBPROCESS * dbproc, int computeid, int column);
00466 RETCODE dbaltbind(DBPROCESS * dbprocess, int computeid, int column, int vartype, DBINT varlen, BYTE * varaddr);
00467 RETCODE dbaltbind_ps(DBPROCESS * dbprocess, int computeid, int column, int vartype, DBINT varlen, BYTE * varaddr,
00468                      DBTYPEINFO * typeinfo);
00469 int dbaltcolid(DBPROCESS * dbproc, int computeid, int column);
00470 RETCODE dbaltlen(DBPROCESS * dbproc, int computeid, int column);
00471 int dbaltop(DBPROCESS * dbproc, int computeid, int column);
00472 int dbalttype(DBPROCESS * dbproc, int computeid, int column);
00473 RETCODE dbaltutype(DBPROCESS * dbproc, int computeid, int column);
00474 RETCODE dbanullbind(DBPROCESS * dbprocess, int computeid, int column, DBINT * indicator);
00475 RETCODE dbbind(DBPROCESS * dbproc, int column, int vartype, DBINT varlen, BYTE * varaddr);
00476 RETCODE dbbind_ps(DBPROCESS * dbprocess, int column, int vartype, DBINT varlen, BYTE * varaddr, DBTYPEINFO * typeinfo);
00477 int dbbufsize(DBPROCESS * dbprocess);
00478 BYTE *dbbylist(DBPROCESS * dbproc, int computeid, int *size);
00479 RETCODE dbcancel(DBPROCESS * dbproc);
00480 RETCODE dbcanquery(DBPROCESS * dbproc);
00481 char *dbchange(DBPROCESS * dbprocess);
00482 DBBOOL dbcharsetconv(DBPROCESS * dbprocess);
00483 void dbclose(DBPROCESS * dbproc);
00484 void dbclrbuf(DBPROCESS * dbproc, DBINT n);
00485 RETCODE dbclropt(DBPROCESS * dbproc, int option, char *param);
00486 RETCODE dbcmd(DBPROCESS * dbproc, const char *cmdstring);
00487 RETCODE dbcmdrow(DBPROCESS * dbproc);
00488 
00489 #define DBCMDROW(x) dbcmdrow((x))
00490 DBBOOL dbcolbrowse(DBPROCESS * dbprocess, int colnum);
00491 RETCODE dbcolinfo (DBPROCESS *dbproc, CI_TYPE type, DBINT column, DBINT computeid, DBCOL *pdbcol);
00492 DBINT dbcollen(DBPROCESS * dbproc, int column);
00493 char *dbcolname(DBPROCESS * dbproc, int column);
00494 char *dbcolsource(DBPROCESS * dbproc, int colnum);
00495 int dbcoltype(DBPROCESS * dbproc, int column);
00496 DBTYPEINFO *dbcoltypeinfo(DBPROCESS * dbproc, int column);
00497 DBINT dbcolutype(DBPROCESS * dbprocess, int column);
00498 DBINT dbconvert(DBPROCESS * dbproc, int srctype, const BYTE * src, DBINT srclen, int desttype, BYTE * dest, DBINT destlen);
00499 DBINT dbconvert_ps(DBPROCESS * dbprocess, int srctype, BYTE * src, DBINT srclen, int desttype, BYTE * dest, DBINT destlen,
00500                    DBTYPEINFO * typeinfo);
00501 DBINT dbcount(DBPROCESS * dbproc);
00502 
00503 #define DBCOUNT(x) dbcount((x))
00504 int dbcurcmd(DBPROCESS * dbproc);
00505 
00506 #define DBCURCMD(x) dbcurcmd((x))
00507 DBINT dbcurrow(DBPROCESS * dbproc);
00508 
00509 #define DBCURROW(x) dbcurrow((x))
00510 RETCODE dbcursor(DBCURSOR * hc, DBINT optype, DBINT bufno, BYTE * table, BYTE * values);
00511 RETCODE dbcursorbind(DBCURSOR * hc, int col, int vartype, DBINT varlen, DBINT * poutlen, BYTE * pvaraddr, DBTYPEINFO * typeinfo);
00512 void dbcursorclose(DBCURSOR * hc);
00513 RETCODE dbcursorcolinfo(DBCURSOR * hc, DBINT column, DBCHAR * colname, DBINT * coltype, DBINT * collen, DBINT * usertype);
00514 RETCODE dbcursorfetch(DBCURSOR * hc, DBINT fetchtype, DBINT rownum);
00515 RETCODE dbcursorinfo(DBCURSOR * hc, DBINT * ncols, DBINT * nrows);
00516 DBCURSOR *dbcursoropen(DBPROCESS * dbprocess, BYTE * stmt, SHORT scollopt, SHORT concuropt, USHORT nrows, DBINT * pstatus);
00517 BYTE *dbdata(DBPROCESS * dbproc, int column);
00518 int dbdate4cmp(DBPROCESS * dbprocess, DBDATETIME4 * d1, DBDATETIME4 * d2);
00519 RETCODE dbdate4zero(DBPROCESS * dbprocess, DBDATETIME4 * d1);
00520 RETCODE dbdatechar(DBPROCESS * dbprocess, char *buf, int datepart, int value);
00521 RETCODE dbdatecmp(DBPROCESS * dbproc, DBDATETIME * d1, DBDATETIME * d2);
00522 RETCODE dbdatecrack(DBPROCESS * dbproc, DBDATEREC * di, DBDATETIME * dt);
00523 int dbdatename(DBPROCESS * dbprocess, char *buf, int date, DBDATETIME * datetime);
00524 char *dateorder(DBPROCESS * dbprocess, char *language);
00525 DBINT dbdatepart(DBPROCESS * dbprocess, int datepart, DBDATETIME * datetime);
00526 RETCODE dbdatezero(DBPROCESS * dbprocess, DBDATETIME * d1);
00527 DBINT dbdatlen(DBPROCESS * dbproc, int column);
00528 char *dbdayname(DBPROCESS * dbprocess, char *language, int daynum);
00529 DBBOOL dbdead(DBPROCESS * dbproc);
00530 
00531 #define DBDEAD(x) dbdead((x))
00532 EHANDLEFUNC dberrhandle(EHANDLEFUNC handler);
00533 void dbexit(void);
00534 RETCODE dbfcmd(DBPROCESS * dbproc, const char *fmt, ...);
00535 DBINT dbfirstrow(DBPROCESS * dbproc);
00536 
00537 #define DBFIRSTROW(x) dbfirstrow((x))
00538 RETCODE dbfree_xlate(DBPROCESS * dbprocess, DBXLATE * xlt_tosrv, DBXLATE * clt_todisp);
00539 void dbfreebuf(DBPROCESS * dbproc);
00540 void dbfreequal(char *qualptr);
00541 RETCODE dbfreesort(DBPROCESS * dbprocess, DBSORTORDER * sortorder);
00542 char *dbgetchar(DBPROCESS * dbprocess, int n);
00543 char *dbgetcharset(DBPROCESS * dbprocess);
00544 RETCODE dbgetloginfo(DBPROCESS * dbprocess, DBLOGINFO ** loginfo);
00545 int dbgetlusername(LOGINREC * login, BYTE * name_buffer, int buffer_len);
00546 int dbgetmaxprocs(void);
00547 char *dbgetnatlanf(DBPROCESS * dbprocess);
00548 int dbgetoff(DBPROCESS * dbprocess, DBUSMALLINT offtype, int startfrom);
00549 int dbgetpacket(DBPROCESS * dbproc);
00550 RETCODE dbgetrow(DBPROCESS * dbproc, DBINT row);
00551 int DBGETTIME(void);
00552 BYTE *dbgetuserdata(DBPROCESS * dbproc);
00553 DBBOOL dbhasretstat(DBPROCESS * dbproc);
00554 RETCODE dbinit(void);
00555 int dbiordesc(DBPROCESS * dbproc);
00556 
00557 #define DBIORDESC(x) dbiordesc((x))
00558 int dbiowdesc(DBPROCESS * dbproc);
00559 
00560 #define DBIOWDESC(x) dbiowdesc((x))
00561 DBBOOL dbisavail(DBPROCESS * dbprocess);
00562 
00563 #define DBISAVAIL(x) dbisavail((x))
00564 DBBOOL dbisopt(DBPROCESS * dbproc, int option, char *param);
00565 DBINT dblastrow(DBPROCESS * dbproc);
00566 
00567 #define DBLASTROW(x) dblastrow((x))
00568 RETCODE dbload_xlate(DBPROCESS * dbprocess, char *srv_charset, char *clt_name, DBXLATE ** xlt_tosrv, DBXLATE ** xlt_todisp);
00569 DBSORTORDER *dbloadsort(DBPROCESS * dbprocess);
00570 LOGINREC *dblogin(void);
00571 void dbloginfree(LOGINREC * login);
00572 RETCODE dbmny4add(DBPROCESS * dbproc, DBMONEY4 * m1, DBMONEY4 * m2, DBMONEY4 * sum);
00573 int dbmny4cmp(DBPROCESS * dbproc, DBMONEY4 * m1, DBMONEY4 * m2);
00574 RETCODE dbmny4copy(DBPROCESS * dbprocess, DBMONEY4 * m1, DBMONEY4 * m2);
00575 RETCODE dbmny4divide(DBPROCESS * dbproc, DBMONEY4 * m1, DBMONEY4 * m2, DBMONEY4 * quotient);
00576 RETCODE dbmny4minus(DBPROCESS * dbproc, DBMONEY4 * src, DBMONEY4 * dest);
00577 RETCODE dbmny4mul(DBPROCESS * dbproc, DBMONEY4 * m1, DBMONEY4 * m2, DBMONEY4 * prod);
00578 RETCODE dbmny4sub(DBPROCESS * dbproc, DBMONEY4 * m1, DBMONEY4 * m2, DBMONEY4 * diff);
00579 RETCODE dbmny4zero(DBPROCESS * dbproc, DBMONEY4 * dest);
00580 RETCODE dbmnyadd(DBPROCESS * dbproc, DBMONEY * m1, DBMONEY * m2, DBMONEY * sum);
00581 int dbmnycmp(DBPROCESS * dbproc, DBMONEY * m1, DBMONEY * m2);
00582 RETCODE dbmnycopy(DBPROCESS * dbproc, DBMONEY * src, DBMONEY * dest);
00583 RETCODE dbmnydec(DBPROCESS * dbproc, DBMONEY * mnyptr);
00584 RETCODE dbmnydivide(DBPROCESS * dbproc, DBMONEY * m1, DBMONEY * m2, DBMONEY * quotient);
00585 RETCODE dbmnydown(DBPROCESS * dbproc, DBMONEY * mnyptr, int divisor, int *remainder);
00586 RETCODE dbmnyinc(DBPROCESS * dbproc, DBMONEY * mnyptr);
00587 RETCODE dbmnyinit(DBPROCESS * dbproc, DBMONEY * mnyptr, int trim, DBBOOL * negative);
00588 RETCODE dbmnymaxneg(DBPROCESS * dbproc, DBMONEY * dest);
00589 RETCODE dbmnyndigit(DBPROCESS * dbproc, DBMONEY * mnyptr, DBCHAR * value, DBBOOL * zero);
00590 RETCODE dbmnymaxpos(DBPROCESS * dbproc, DBMONEY * dest);
00591 RETCODE dbmnyminus(DBPROCESS * dbproc, DBMONEY * src, DBMONEY * dest);
00592 RETCODE dbmnymul(DBPROCESS * dbproc, DBMONEY * m1, DBMONEY * m2, DBMONEY * prod);
00593 RETCODE dbmnydigit(DBPROCESS * dbprocess, DBMONEY * m1, DBCHAR * value, DBBOOL * zero);
00594 RETCODE dbmnyscale(DBPROCESS * dbproc, DBMONEY * dest, int multiplier, int addend);
00595 RETCODE dbmnysub(DBPROCESS * dbproc, DBMONEY * m1, DBMONEY * m2, DBMONEY * diff);
00596 RETCODE dbmnyzero(DBPROCESS * dbproc, DBMONEY * dest);
00597 const char *dbmonthname(DBPROCESS * dbproc, char *language, int monthnum, DBBOOL shortform);
00598 RETCODE dbmorecmds(DBPROCESS * dbproc);
00599 
00600 #define DBMORECMDS(x) dbmorecmds((x))
00601 RETCODE dbmoretext(DBPROCESS * dbproc, DBINT size, BYTE * text);
00602 MHANDLEFUNC dbmsghandle(MHANDLEFUNC handler);
00603 char *dbname(DBPROCESS * dbproc);
00604 RETCODE dbnextrow(DBPROCESS * dbproc);
00605 RETCODE dbnpcreate(DBPROCESS * dbprocess);
00606 RETCODE dbnpdefine(DBPROCESS * dbprocess, DBCHAR * procedure_name, DBSMALLINT namelen);
00607 RETCODE dbnullbind(DBPROCESS * dbproc, int column, DBINT * indicator);
00608 int dbnumalts(DBPROCESS * dbproc, int computeid);
00609 int dbnumcols(DBPROCESS * dbproc);
00610 int dbnumcompute(DBPROCESS * dbprocess);
00611 int DBNUMORDERS(DBPROCESS * dbprocess);
00612 int dbnumrets(DBPROCESS * dbproc);
00613 DBPROCESS *tdsdbopen(LOGINREC * login, char *server, int msdblib);
00614 DBPROCESS *dbopen(LOGINREC * login, char *server);
00615 
00616 #if MSDBLIB
00617 #define   dbopen(x,y) tdsdbopen((x),(y), 1)
00618 #else
00619 #define   dbopen(x,y) tdsdbopen((x),(y), 0)
00620 #endif
00621 int dbordercol(DBPROCESS * dbprocess, int order);
00622 RETCODE dbpoll(DBPROCESS * dbproc, long milliseconds, DBPROCESS ** ready_dbproc, int *return_reason);
00623 void dbprhead(DBPROCESS * dbproc);
00624 RETCODE dbprrow(DBPROCESS * dbproc);
00625 const char *dbprtype(int token);
00626 char *dbqual(DBPROCESS * dbprocess, int tabnum, char *tabname);
00627 DBBOOL DRBUF(DBPROCESS * dbprocess);
00628 DBINT dbreadpage(DBPROCESS * dbprocess, char *p_dbname, DBINT pageno, BYTE * buf);
00629 STATUS dbreadtext(DBPROCESS * dbproc, void *buf, DBINT bufsize);
00630 void dbrecftos(char *filename);
00631 RETCODE dbrecvpassthru(DBPROCESS * dbprocess, DBVOIDPTR * bufp);
00632 RETCODE dbregdrop(DBPROCESS * dbprocess, DBCHAR * procnm, DBSMALLINT namelen);
00633 RETCODE dbregexec(DBPROCESS * dbproc, DBUSMALLINT options);
00634 RETCODE dbreghandle(DBPROCESS * dbprocess, DBCHAR * procnm, DBSMALLINT namelen, INTFUNCPTR handler);
00635 RETCODE dbreginit(DBPROCESS * dbproc, DBCHAR * procedure_name, DBSMALLINT namelen);
00636 RETCODE dbreglist(DBPROCESS * dbproc);
00637 RETCODE dbregnowatch(DBPROCESS * dbprocess, DBCHAR * procnm, DBSMALLINT namelen);
00638 RETCODE dbregparam(DBPROCESS * dbproc, char *param_name, int type, DBINT datalen, BYTE * data);
00639 RETCODE dbregwatch(DBPROCESS * dbprocess, DBCHAR * procnm, DBSMALLINT namelen, DBUSMALLINT options);
00640 RETCODE dbregwatchlist(DBPROCESS * dbprocess);
00641 RETCODE dbresults(DBPROCESS * dbproc);
00642 RETCODE dbresults_r(DBPROCESS * dbproc, int recursive);
00643 BYTE *dbretdata(DBPROCESS * dbproc, int retnum);
00644 int dbretlen(DBPROCESS * dbproc, int retnum);
00645 char *dbretname(DBPROCESS * dbproc, int retnum);
00646 DBINT dbretstatus(DBPROCESS * dbproc);
00647 int dbrettype(DBPROCESS * dbproc, int retnum);
00648 RETCODE dbrows(DBPROCESS * dbproc);
00649 
00650 #define DBROWS(x) dbrows((x))
00651 STATUS dbrowtype(DBPROCESS * dbprocess);
00652 
00653 #define DBROWTYPE(x) dbrowtype((x))
00654 RETCODE dbrpcinit(DBPROCESS * dbproc, char *rpcname, DBSMALLINT options);
00655 RETCODE dbrpcparam(DBPROCESS * dbproc, char *paramname, BYTE status, int type, DBINT maxlen, DBINT datalen, BYTE * value);
00656 RETCODE dbrpcsend(DBPROCESS * dbproc);
00657 void dbrpwclr(LOGINREC * login);
00658 RETCODE dbrpwset(LOGINREC * login, char *srvname, char *password, int pwlen);
00659 RETCODE dbsafestr(DBPROCESS * dbproc, const char *src, DBINT srclen, char *dest, DBINT destlen, int quotetype);
00660 RETCODE *dbsechandle(DBINT type, INTFUNCPTR handler);
00661 RETCODE dbsendpassthru(DBPROCESS * dbprocess, DBVOIDPTR bufp);
00662 char *dbservcharset(DBPROCESS * dbprocess);
00663 void dbsetavail(DBPROCESS * dbprocess);
00664 void dbsetbusy(DBPROCESS * dbprocess, DB_DBBUSY_FUNC busyfunc);
00665 RETCODE dbsetdefcharset(char *charset);
00666 RETCODE dbsetdeflang(char *language);
00667 void dbsetidle(DBPROCESS * dbprocess, DB_DBIDLE_FUNC idlefunc);
00668 void dbsetifile(char *filename);
00669 void dbsetinterrupt(DBPROCESS * dbproc, DB_DBCHKINTR_FUNC chkintr, DB_DBHNDLINTR_FUNC hndlintr);
00670 RETCODE dbsetloginfo(LOGINREC * loginrec, DBLOGINFO * loginfo);
00671 RETCODE dbsetlogintime(int seconds);
00672 RETCODE dbsetmaxprocs(int maxprocs);
00673 RETCODE dbsetnull(DBPROCESS * dbprocess, int bindtype, int bindlen, BYTE * bindval);
00674 RETCODE dbsetopt(DBPROCESS * dbproc, int option, const char *char_param, int int_param);
00675 STATUS dbsetrow(DBPROCESS * dbprocess, DBINT row);
00676 RETCODE dbsettime(int seconds);
00677 void dbsetuserdata(DBPROCESS * dbproc, BYTE * ptr);
00678 RETCODE dbsetversion(DBINT version);
00679 
00680 int dbspid(DBPROCESS * dbproc);
00681 RETCODE dbspr1row(DBPROCESS * dbproc, char *buffer, DBINT buf_len);
00682 DBINT dbspr1rowlen(DBPROCESS * dbproc);
00683 RETCODE dbsprhead(DBPROCESS * dbproc, char *buffer, DBINT buf_len);
00684 RETCODE dbsprline(DBPROCESS * dbproc, char *buffer, DBINT buf_len, DBCHAR line_char);
00685 RETCODE dbsqlexec(DBPROCESS * dbproc);
00686 RETCODE dbsqlok(DBPROCESS * dbproc);
00687 RETCODE dbsqlsend(DBPROCESS * dbproc);
00688 int dbstrbuild(DBPROCESS * dbproc, char *charbuf, int bufsize, char *text, char *formats, ...);
00689 int dbstrcmp(DBPROCESS * dbprocess, char *s1, int l1, char *s2, int l2, DBSORTORDER * sort);
00690 RETCODE dbstrcpy(DBPROCESS * dbproc, int start, int numbytes, char *dest);
00691 int dbstrlen(DBPROCESS * dbproc);
00692 int dbstrsort(DBPROCESS * dbprocess, char *s1, int l1, char *s2, int l2, DBSORTORDER * sort);
00693 DBBOOL dbtabbrowse(DBPROCESS * dbprocess, int tabnum);
00694 int dbtabcount(DBPROCESS * dbprocess);
00695 char *dbtabname(DBPROCESS * dbprocess, int tabnum);
00696 char *dbtabsoruce(DBPROCESS * dbprocess, int colnum, int *tabnum);
00697 DBINT dbvarylen(DBPROCESS * dbproc, int column);
00698 
00699 #define SYBEICONVI       2403   /* Unconverted characters were changed to question marks while reading from SQL Server. */
00700 #define SYBEICONVO       2402   /* Unable to write to SQL Server: error converting to server's character set. */
00701 #define SYBESYNC        20001   /* Read attempted while out of synchronization with SQL Server. */
00702 #define SYBEFCON        20002   /* SQL Server connection failed. */
00703 #define SYBETIME        20003   /* SQL Server connection timed out. */
00704 #define SYBEREAD        20004   /* Read from SQL Server failed. */
00705 #define SYBEBUFL        20005   /* DB-LIBRARY internal error - send buffer length corrupted. */
00706 #define SYBEWRIT        20006   /* Write to SQL Server failed. */
00707 #define SYBEVMS         20007   /* Sendflush: VMS I/O error. */
00708 #define SYBESOCK        20008   /* Unable to open socket */
00709 #define SYBECONN        20009   /* Unable to connect socket -- SQL Server is unavailable or does not exist. */
00710 #define SYBEMEM         20010   /* Unable to allocate sufficient memory */
00711 #define SYBEDBPS        20011   /* Maximum number of DBPROCESSes already allocated. */
00712 #define SYBEINTF        20012   /* Server name not found in interface file */
00713 #define SYBEUHST        20013   /* Unknown host machine name */
00714 #define SYBEPWD         20014   /* Incorrect password. */
00715 #define SYBEOPIN        20015   /* Could not open interface file. */
00716 #define SYBEINLN        20016   /* Interface file: unexpected end-of-line. */
00717 #define SYBESEOF        20017   /* Unexpected EOF from SQL Server. */
00718 #define SYBESMSG        20018   /* General SQL Server error: Check messages from the SQL Server. */
00719 #define SYBERPND        20019   /* Attempt to initiate a new SQL Server operation with results pending. */
00720 #define SYBEBTOK        20020   /* Bad token from SQL Server: Data-stream processing out of sync. */
00721 #define SYBEITIM        20021   /* Illegal timeout value specified. */
00722 #define SYBEOOB         20022   /* Error in sending out-of-band data to SQL Server. */
00723 #define SYBEBTYP        20023   /* Unknown bind type passed to DB-LIBRARY function. */
00724 #define SYBEBNCR        20024   /* Attempt to bind user variable to a non-existent compute row. */
00725 #define SYBEIICL        20025   /* Illegal integer column length returned by SQL Server. Legal integer lengths are 1, 2, and 4 bytes. */
00726 #define SYBECNOR        20026   /* Column number out of range. */
00727 #define SYBENPRM        20027   /* NULL parameter not allowed for this dboption. */
00728 #define SYBEUVDT        20028   /* Unknown variable-length datatype encountered. */
00729 #define SYBEUFDT        20029   /* Unknown fixed-length datatype encountered. */
00730 #define SYBEWAID        20030   /* DB-LIBRARY internal error: ALTFMT following ALTNAME has wrong id. */
00731 #define SYBECDNS        20031   /* Datastream indicates that a compute column is derived from a non-existent select-list member. */
00732 #define SYBEABNC        20032   /* Attempt to bind to a non-existent column. */
00733 #define SYBEABMT        20033   /* User attempted a dbbind() with mismatched column and variable types. */
00734 #define SYBEABNP        20034   /* Attempt to bind using NULL pointers. */
00735 #define SYBEAAMT        20035   /* User attempted a dbaltbind() with mismatched column and variable types. */
00736 #define SYBENXID        20036   /* The Server did not grant us a distributed-transaction ID. */
00737 #define SYBERXID        20037   /* The Server did not recognize our distributed-transaction ID. */
00738 #define SYBEICN         20038   /* Invalid computeid or compute column number. */
00739 #define SYBENMOB        20039   /* No such member of 'order by' clause. */
00740 #define SYBEAPUT        20040   /* Attempt to print unknown token. */
00741 #define SYBEASNL        20041   /* Attempt to set fields in a null loginrec. */
00742 #define SYBENTLL        20042   /* Name too long for loginrec field. */
00743 #define SYBEASUL        20043   /* Attempt to set unknown loginrec field. */
00744 #define SYBERDNR        20044   /* Attempt to retrieve data from a non-existent row. */
00745 #define SYBENSIP        20045   /* Negative starting index passed to dbstrcpy(). */
00746 #define SYBEABNV        20046   /* Attempt to bind to a NULL program variable. */
00747 #define SYBEDDNE        20047   /* DBPROCESS is dead or not enabled. */
00748 #define SYBECUFL        20048   /* Data-conversion resulted in underflow. */
00749 #define SYBECOFL        20049   /* Data-conversion resulted in overflow. */
00750 #define SYBECSYN        20050   /* Attempt to convert data stopped by syntax error in source field. */
00751 #define SYBECLPR        20051   /* Data-conversion resulted in loss of precision. */
00752 #define SYBECNOV        20052   /* Attempt to set variable to NULL resulted in overflow. */
00753 #define SYBERDCN        20053   /* Requested data-conversion does not exist. */
00754 #define SYBESFOV        20054   /* dbsafestr() overflowed its destination buffer. */
00755 #define SYBEUNT         20055   /* Unknown network type found in interface file. */
00756 #define SYBECLOS        20056   /* Error in closing network connection. */
00757 #define SYBEUAVE        20057   /* Unable to allocate VMS event flag. */
00758 #define SYBEUSCT        20058   /* Unable to set communications timer. */
00759 #define SYBEEQVA        20059   /* Error in queueing VMS AST routine. */
00760 #define SYBEUDTY        20060   /* Unknown datatype encountered. */
00761 #define SYBETSIT        20061   /* Attempt to call dbtsput() with an invalid timestamp. */
00762 #define SYBEAUTN        20062   /* Attempt to update the timestamp of a table which has no timestamp column. */
00763 #define SYBEBDIO        20063   /* Bad bulk-copy direction.  Must be either IN or OUT. */
00764 #define SYBEBCNT        20064   /* Attempt to use Bulk Copy with a non-existent Server table. */
00765 #define SYBEIFNB        20065   /* Illegal field number passed to bcp_control(). */
00766 #define SYBETTS         20066   /* The table which bulk-copy is attempting to copy to a host-file is shorter than the number of rows which bulk-copy was instructed to skip. */
00767 #define SYBEKBCO        20067   /* 1000 rows successfully bulk-copied to host-file. */
00768 #define SYBEBBCI        20068   /* Batch successfully bulk-copied to SQL Server. */
00769 #define SYBEKBCI        20069   /* Bcp: 1000 rows sent to SQL Server. */
00770 #define SYBEBCRE        20070   /* I/O error while reading bcp data-file. */
00771 #define SYBETPTN        20071   /* Syntax error: only two periods are permitted in table names. */
00772 #define SYBEBCWE        20072   /* I/O error while writing bcp data-file. */
00773 #define SYBEBCNN        20073   /* Attempt to bulk-copy a NULL value into Server column %d,  which does not accept NULL values. */
00774 #define SYBEBCOR        20074   /* Attempt to bulk-copy an oversized row to the SQL Server. */
00775 #define SYBEBCIS        20075   /* Attempt to bulk-copy an illegally-sized column value to the SQL Server. */
00776 #define SYBEBCPI        20076   /* bcp_init() must be called before any other bcp routines. */
00777 #define SYBEBCPN        20077   /* bcp_bind(), bcp_collen(), bcp_colptr(), bcp_moretext() and bcp_sendrow() may be used only after bcp_init() has been called with the copy direction set to DB_IN. */
00778 #define SYBEBCPB        20078   /* bcp_bind(), bcp_moretext() and bcp_sendrow() may NOT be used after bcp_init() has been passed a non-NULL input file name. */
00779 #define SYBEVDPT        20079   /* For bulk copy, all variable-length data must have either a length-prefix or a terminator specified. */
00780 #define SYBEBIVI        20080   /* bcp_columns(), bcp_colfmt() and bcp_colfmt_ps() may be used only after bcp_init() has been passed a valid input file. */
00781 #define SYBEBCBC        20081   /* bcp_columns() must be called before bcp_colfmt() and bcp_colfmt_ps(). */
00782 #define SYBEBCFO        20082   /* Bcp host-files must contain at least one column. */
00783 #define SYBEBCVH        20083   /* bcp_exec() may be called only after bcp_init() has been passed a valid host file. */
00784 #define SYBEBCUO        20084   /* Bcp: Unable to open host data-file. */
00785 #define SYBEBCUC        20085   /* Bcp: Unable to close host data-file. */
00786 #define SYBEBUOE        20086   /* Bcp: Unable to open error-file. */
00787 #define SYBEBUCE        20087   /* Bcp: Unable to close error-file. */
00788 #define SYBEBWEF        20088   /* I/O error while writing bcp error-file. */
00789 #define SYBEASTF        20089   /* VMS: Unable to setmode for control_c ast. */
00790 #define SYBEUACS        20090   /* VMS: Unable to assign channel to sys$command. */
00791 #define SYBEASEC        20091   /* Attempt to send an empty command buffer to the SQL Server. */
00792 #define SYBETMTD        20092   /* Attempt to send too much TEXT data via the dbmoretext() call. */
00793 #define SYBENTTN        20093   /* Attempt to use dbtxtsput() to put a new text-timestamp into a non-existent data row. */
00794 #define SYBEDNTI        20094   /* Attempt to use dbtxtsput() to put a new text-timestamp into a column whose datatype is neither SYBTEXT nor SYBIMAGE. */
00795 #define SYBEBTMT        20095   /* Attempt to send too much TEXT data via the bcp_moretext() call. */
00796 #define SYBEORPF        20096   /* Attempt to set remote password would overflow the login-record's remote-password field. */
00797 #define SYBEUVBF        20097   /* Attempt to read an unknown version of BCP format-file. */
00798 #define SYBEBUOF        20098   /* Bcp: Unable to open format-file. */
00799 #define SYBEBUCF        20099   /* Bcp: Unable to close format-file. */
00800 #define SYBEBRFF        20100   /* I/O error while reading bcp format-file. */
00801 #define SYBEBWFF        20101   /* I/O error while writing bcp format-file. */
00802 #define SYBEBUDF        20102   /* Bcp: Unrecognized datatype found in format-file. */
00803 #define SYBEBIHC        20103   /* Incorrect host-column number found in bcp format-file. */
00804 #define SYBEBEOF        20104   /* Unexpected EOF encountered in BCP data-file. */
00805 #define SYBEBCNL        20105   /* Negative length-prefix found in BCP data-file. */
00806 #define SYBEBCSI        20106   /* Host-file columns may be skipped only when copying INto the Server. */
00807 #define SYBEBCIT        20107   /* It's illegal to use BCP terminators with program variables other than SYBCHAR, SYBBINARY, SYBTEXT, or SYBIMAGE. */
00808 #define SYBEBCSA        20108   /* The BCP hostfile '%s' contains only %ld rows. Skipping all of these rows is not allowed. */
00809 #define SYBENULL        20109   /* NULL DBPROCESS pointer passed to DB-Library. */
00810 #define SYBEUNAM        20110   /* Unable to get current username from operating system. */
00811 #define SYBEBCRO        20111   /* The BCP hostfile '%s' contains only %ld rows. It was impossible to read the requested %ld rows. */
00812 #define SYBEMPLL        20112   /* Attempt to set maximum number of DBPROCESSes lower than 1. */
00813 #define SYBERPIL        20113   /* It is illegal to pass -1 to dbrpcparam() for the datalen of parameters which are of type SYBCHAR, SYBVARCHAR, SYBBINARY, or SYBVARBINARY. */
00814 #define SYBERPUL        20114   /* When passing a SYBINTN, SYBDATETIMN, SYBMONEYN, or SYBFLTN parameter via dbrpcparam(), it's necessary to specify the parameter's maximum or actual length, so that DB-Library can recognize it as a SYBINT1, SYBINT2, SYBINT4, SYBMONEY, or SYBMONEY4, etc. */
00815 #define SYBEUNOP        20115   /* Unknown option passed to dbsetopt(). */
00816 #define SYBECRNC        20116   /* The current row is not a result of compute clause %d, so it is illegal to attempt to extract that data from this row. */
00817 #define SYBERTCC        20117   /* dbreadtext() may not be used to receive the results of a query which contains a COMPUTE clause. */
00818 #define SYBERTSC        20118   /* dbreadtext() may only be used to receive the results of a query which contains a single result column. */
00819 #define SYBEUCRR        20119   /* Internal software error: Unknown connection result reported by                                                 * dbpasswd(). */
00820 #define SYBERPNA        20120   /* The RPC facility is available only when using a SQL Server whose version number is 4.0 or greater. */
00821 #define SYBEOPNA        20121   /* The text/image facility is available only when using a SQL Server whose version number is 4.0 or greater. */
00822 #define SYBEFGTL        20122   /* Bcp: Row number of the first row to be copied cannot be greater than the row number for the last row to be copied.  */
00823 #define SYBECWLL        20123   /* Attempt to set column width less than 1.  */
00824 #define SYBEUFDS        20124   /* Unrecognized format encountered in dbstrbuild(). */
00825 #define SYBEUCPT        20125   /* Unrecognized custom-format parameter-type encountered in dbstrbuild(). */
00826 #define SYBETMCF        20126   /* Attempt to install too many custom formats via dbfmtinstall(). */
00827 #define SYBEAICF        20127   /* Error in attempting to install custom format. */
00828 #define SYBEADST        20128   /* Error in attempting to determine the size of a pair of translation tables. */
00829 #define SYBEALTT        20129   /* Error in attempting to load a pair of translation tables. */
00830 #define SYBEAPCT        20130   /* Error in attempting to perform a character-set translation. */
00831 #define SYBEXOCI        20131   /* A character-set translation overflowed its destination buffer while using bcp to copy data from a host-file to the SQL Server. */
00832 #define SYBEFSHD        20132   /* Error in attempting to find the Sybase home directory. */
00833 #define SYBEAOLF        20133   /* Error in attempting to open a localization file. */
00834 #define SYBEARDI        20134   /* Error in attempting to read datetime information from a localization file. */
00835 #define SYBEURCI        20135   /* Unable to read copyright information from the dblib localization file. */
00836 #define SYBEARDL        20136   /* Error in attempting to read the dblib.loc localization file. */
00837 #define SYBEURMI        20137   /* Unable to read money-format information from the dblib localization file. */
00838 #define SYBEUREM        20138   /* Unable to read error mnemonic from the dblib localization file. */
00839 #define SYBEURES        20139   /* Unable to read error string from the dblib localization file. */
00840 #define SYBEUREI        20140   /* Unable to read error information from the dblib localization file. */
00841 #define SYBEOREN        20141   /* Warning: an out-of-range error-number was encountered in dblib.loc. The maximum permissible error-number is defined as DBERRCOUNT in sybdb.h. */
00842 #define SYBEISOI        20142   /* Invalid sort-order information found. */
00843 #define SYBEIDCL        20143   /* Illegal datetime column length returned by DataServer. Legal datetime lengths are 4 and 8 bytes. */
00844 #define SYBEIMCL        20144   /* Illegal money column length returned by DataServer. Legal money lengths are 4 and 8 bytes. */
00845 #define SYBEIFCL        20145   /* Illegal floating-point column length returned by DataServer. Legal floating-point lengths are 4 and 8 bytes. */
00846 #define SYBEUTDS        20146   /* Unrecognized TDS version received from SQL Server. */
00847 #define SYBEBUFF        20147   /* Bcp: Unable to create format-file. */
00848 #define SYBEACNV        20148   /* Attemp to do conversion with NULL destination variable. */
00849 #define SYBEDPOR        20149   /* Out-of-range datepart constant. */
00850 #define SYBENDC         20150   /* Cannot have negative component in date in numeric form. */
00851 #define SYBEMVOR        20151   /* Month values must be between 1 and 12. */
00852 #define SYBEDVOR        20152   /* Day values must be between 1 and 7. */
00853 #define SYBENBVP        20153   /* Cannot pass dbsetnull() a NULL bindval pointer. */
00854 #define SYBESPID        20154   /* Called dbspid() with a NULL dbproc. */
00855 #define SYBENDTP        20155   /* Called dbdatecrack() with a NULL datetime  parameter. */
00856 #define SYBEXTN         20156   /* The xlt_todisp and xlt_tosrv parameters to dbfree_xlate() were NULL. */
00857 #define SYBEXTDN        20157   /* Warning:  the xlt_todisp parameter to dbfree_xlate() was NULL.  The space associated with the xlt_tosrv parameter has been freed. */
00858 #define SYBEXTSN        20158   /* Warning:  the xlt_tosrv parameter to dbfree_xlate() was NULL.  The space associated with the xlt_todisp parameter has been freed. */
00859 #define SYBENUM         20159   /* Incorrect number of arguments given  to DB-Library.  */
00860 #define SYBETYPE        20160   /* Invalid argument type given to DB-Library. */
00861 #define SYBEGENOS       20161   /* General Operating System Error. */
00862 #define SYBEPAGE        20162   /* wrong resource type or length given for  dbpage() operation.  */
00863 #define SYBEOPTNO       20163   /* Option is not allowed or is unreconized */
00864 #define SYBEETD         20164   /*"Failure to send the expected amount of  TEXT or IMAGE data via dbmoretext(). */
00865 #define SYBERTYPE       20165   /* Invalid resource type given to DB-Library. */
00866 #define SYBERFILE       20166   /* "Can not open resource file." */
00867 #define SYBEFMODE       20167   /* Read/Write/Append mode denied on file. */
00868 #define SYBESLCT        20168   /* Could not select or copy field specified */
00869 #define SYBEZTXT        20169   /* Attempt to send zero length TEXT or  IMAGE to dataserver via dbwritetext(). */
00870 #define SYBENTST        20170   /* The file being opened must be a stream_lf. */
00871 #define SYBEOSSL        20171   /* Operating system login level not in range of Secure SQL Server */
00872 #define SYBEESSL        20172   /* Login security level entered does not agree with operating system level */
00873 #define SYBENLNL        20173   /* Program not linked with specified network library. */
00874 #define SYBENHAN        20174   /* called dbrecvpassthru() with a NULL handler parameter. */
00875 #define SYBENBUF        20175   /* called dbsendpassthru() with a NULL buf pointer. */
00876 #define SYBENULP        20176   /* Called %s with a NULL %s parameter. */
00877 #define SYBENOTI        20177   /* No event handler installed. */
00878 #define SYBEEVOP        20178   /* Called dbregwatch() with a bad options parameter. */
00879 #define SYBENEHA        20179   /* Called dbreghandle() with a NULL handler parameter. */
00880 #define SYBETRAN        20180   /* DBPROCESS is being used for another transaction. */
00881 #define SYBEEVST        20181   /* Must initiate a transaction before calling dbregparam(). */
00882 #define SYBEEINI        20182   /* Must call dbreginit() before dbregraise(). */
00883 #define SYBEECRT        20183   /* Must call dbregdefine() before dbregcreate(). */
00884 #define SYBEECAN        20184   /* Attempted to cancel unrequested event notification. */
00885 #define SYBEEUNR        20185   /* Unsolicited event notification received. */
00886 #define SYBERPCS        20186   /* Must call dbrpcinit() before dbrpcparam(). */
00887 #define SYBETPAR        20187   /* No SYBTEXT or SYBIMAGE parameters were defined. */
00888 #define SYBETEXS        20188   /* Called dbmoretext() with a bad size parameter. */
00889 #define SYBETRAC        20189   /* Attempted to turn off a trace flag that was not on. */
00890 #define SYBETRAS        20190   /* DB-Library internal error - trace structure not found. */
00891 #define SYBEPRTF        20191   /* dbtracestring() may only be called from a printfunc(). */
00892 #define SYBETRSN        20192   /* Bad numbytes parameter passed to dbtracestring(). */
00893 #define SYBEBPKS        20193   /* In DBSETLPACKET(), the packet size parameter must be between 0 and 999999. */
00894 #define SYBEIPV         20194   /* %1! is an illegal value for the %2! parameter of %3!. */
00895 #define SYBEMOV         20195   /* Money arithmetic resulted in overflow in function %1!. */
00896 #define SYBEDIVZ        20196   /* Attempt to divide by $0.00 in function %1!. */
00897 #define SYBEASTL        20197   /* Synchronous I/O attempted at AST level. */
00898 #define SYBESEFA        20198   /* DBSETNOTIFS cannot be called if connections are present. */
00899 #define SYBEPOLL 20199          /* Only one dbpoll() can be active at a time. */
00900 #define SYBENOEV 20200          /* dbpoll() cannot be called if registered procedure notifications have been disabled. */
00901 #define SYBEBADPK 20201         /* Packet size of %1! not supported. -- size of %2! used instead. */
00902 #define SYBESECURE 20202        /* Secure Server function not supported in this version. */
00903 #define SYBECAP 20203           /* DB-Library capabilities not accepted by the Server. */
00904 #define SYBEFUNC 20204          /* Functionality not supported at the specified version level. */
00905 #define SYBERESP 20205          /* Response function address passed to dbresponse() must be non-NULL. */
00906 #define SYBEIVERS       20206   /* Illegal version level specified. */
00907 #define SYBEONCE 20207          /* Function can be called only once. */
00908 #define SYBERPNULL 20208        /* value parameter for dbprcparam() can be NULL, only if the datalen parameter is 0 */
00909 #define SYBERPTXTIM 20209       /* RPC parameters cannot be of type Text/Image. */
00910 #define SYBENEG 20210           /* Negotiated login attempt failed. */
00911 #define SYBELBLEN 20211         /* Security labels should be less than 256 characters long. */
00912 #define SYBEUMSG 20212          /* Unknown message-id in MSG datastream. */
00913 #define SYBECAPTYP 20213        /* Unexpected capability type in CAPABILITY datastream. */
00914 #define SYBEBNUM 20214          /* Bad numbytes parameter passed to dbstrcpy() */
00915 #define SYBEBBL 20215           /* Bad bindlen parameter passed to dbsetnull() */
00916 #define SYBEBPREC 20216         /* Illegal precision specified */
00917 #define SYBEBSCALE 20217        /* Illegal scale specified */
00918 #define SYBECDOMAIN 20218       /* Source field value is not within the domain of legal values. */
00919 #define SYBECINTERNAL 20219     /* Internal Conversion error. */
00920 #define SYBEBTYPSRV 20220       /* Datatype is not supported by the server. */
00921 #define SYBEBCSET 20221         /* Unknown character-set encountered." */
00922 #define SYBEFENC 20222          /* Password Encryption failed." */
00923 #define SYBEFRES 20223          /* Challenge-Response function failed.", */
00924 #define SYBEISRVPREC 20224      /* Illegal precision value returned by the server. */
00925 #define SYBEISRVSCL 20225       /* Illegal scale value returned by the server. */
00926 #define SYBEINUMCL 20226        /* Invalid numeric column length returned by the server. */
00927 #define SYBEIDECCL 20227        /* Invalid decimal column length returned by the server. */
00928 #define SYBEBCMTXT 20228        /* bcp_moretext() may be used only when there is at least one text or image column in the server table. */
00929 #define SYBEBCPREC 20229        /* Column %1!: Illegal precision value encountered. */
00930 #define SYBEBCBNPR 20230        /* bcp_bind(): if varaddr is NULL, prefixlen must be 0 and no terminator should be specified. */
00931 #define SYBEBCBNTYP 20231       /* bcp_bind(): if varaddr is NULL and varlen greater than 0, the table column type must be SYBTEXT or SYBIMAGE and the program variable type must be SYBTEXT, SYBCHAR, SYBIMAGE or SYBBINARY. */
00932 #define SYBEBCSNTYP 20232       /* column number %1!: if varaddr is NULL and varlen greater than 0, the table column type must be SYBTEXT or SYBIMAGE and the program variable type must be SYBTEXT, SYBCHAR, SYBIMAGE or SYBBINARY. */
00933 #define SYBEBCPCTYP 20233       /* bcp_colfmt(): If table_colnum is 0, host_type cannot be 0. */
00934 #define SYBEBCVLEN 20234        /* varlen should be greater than or equal to -1. */
00935 #define SYBEBCHLEN 20235        /* host_collen should be greater than or equal to -1. */
00936 #define SYBEBCBPREF 20236       /* Illegal prefix length. Legal values are 0, 1, 2 or 4. */
00937 #define SYBEBCPREF 20237        /* Illegal prefix length. Legal values are -1, 0, 1, 2 or 4. */
00938 #define SYBEBCITBNM 20238       /* bcp_init(): tblname parameter cannot be NULL. */
00939 #define SYBEBCITBLEN 20239      /* bcp_init(): tblname parameter is too long. */
00940 #define SYBEBCSNDROW 20240      /* bcp_sendrow() may NOT be called unless all text data for the previous row has been sent using bcp_moretext(). */
00941 #define SYBEBPROCOL 20241       /* bcp protocol error: returned column count differs from the actual number of columns received. */
00942 #define SYBEBPRODEF 20242       /* bcp protocol error: expected default information and got none. */
00943 #define SYBEBPRONUMDEF 20243    /* bcp protocol error: expected number of defaults differs from the actual number of defaults received. */
00944 #define SYBEBPRODEFID 20244     /* bcp protocol error: default column id and actual column id are not same */
00945 #define SYBEBPRONODEF 20245     /* bcp protocol error:  default value received for column that does not have default. */
00946 #define SYBEBPRODEFTYP 20246    /* bcp protocol error:  default value datatype differs from column datatype. */
00947 #define SYBEBPROEXTDEF 20247    /* bcp protocol error: more than one row of default information received. */
00948 #define SYBEBPROEXTRES 20248    /* bcp protocol error: unexpected set of results received. */
00949 #define SYBEBPROBADDEF 20249    /* bcp protocol error: illegal default column id received. */
00950 #define SYBEBPROBADTYP 20250    /* bcp protocol error: unknown column datatype. */
00951 #define SYBEBPROBADLEN 20251    /* bcp protocol error: illegal datatype length received. */
00952 #define SYBEBPROBADPREC 20252   /* bcp protocol error: illegal precision value received. */
00953 #define SYBEBPROBADSCL 20253    /* bcp protocol error: illegal scale value received. */
00954 #define SYBEBADTYPE 20254       /* Illegal value for type parameter  given to %1!. */
00955 #define SYBECRSNORES  20255     /* Cursor statement generated no results. */
00956 #define SYBECRSNOIND 20256      /* One of the tables involved in the cursor  statement does not have a unique index. */
00957 #define SYBECRSVIEW 20257       /* A view cannot be joined with another table  or a view in a cursor statement. */
00958 #define SYBECRSVIIND 20258      /* The view used in the cursor statement does  not include all the unique index columns of  the underlying tables. */
00959 #define SYBECRSORD 20259        /* Only fully keyset driven cursors can have 'order by', ' group by', or 'having' phrases. */
00960 #define SYBECRSBUFR 20260       /* Row buffering should not be turned on when  using cursor APIs. */
00961 #define SYBECRSNOFREE 20261     /* The DBNOAUTOFREE option should not be  turned on when using cursor APIs. */
00962 #define SYBECRSDIS 20262        /* Cursor statement contains one of the  disallowed phrases 'compute', 'union', 'for browse', or 'select into'. */
00963 #define SYBECRSAGR 20263        /* Aggregate functions are not allowed in a  cursor statement. */
00964 #define SYBECRSFRAND 20264      /* Fetch types RANDOM and RELATIVE can only be  used within the keyset of keyset driven  cursors. */
00965 #define SYBECRSFLAST 20265      /* Fetch type LAST requires fully keyset  driven cursors. */
00966 #define SYBECRSBROL 20266       /* Backward scrolling cannot be used in a  forward scrolling cursor. */
00967 #define SYBECRSFROWN 20267      /* Row number to be fetched is outside valid  range. */
00968 #define SYBECRSBSKEY 20268      /* Keyset cannot be scrolled backward in mixed  cursors with a previous fetch type. */
00969 #define SYBECRSRO 20269         /* Data locking or modifications cannot be  made in a READONLY cursor. */
00970 #define SYBECRSNOCOUNT 20270    /* The DBNOCOUNT option should not be  turned on when doing updates or deletes with  dbcursor(). */
00971 #define SYBECRSTAB 20271        /* Table name must be determined in operations  involving data locking or modifications. */
00972 #define SYBECRSUPDNB 20272      /* Update or insert operations cannot use bind  variables when binding type is NOBIND. */
00973 #define SYBECRSNOWHERE 20273    /* A WHERE clause is not allowed in a cursor  update or insert. */
00974 #define SYBECRSSET 20274        /* A SET clause is required for a cursor  update or insert.  */
00975 #define SYBECRSUPDTAB 20275     /* Update or insert operations using bind  variables require single table cursors. */
00976 #define SYBECRSNOUPD 20276      /* Update or delete operation did not affect  any rows. */
00977 #define SYBECRSINV 20277        /* Invalid cursor statement. */
00978 #define SYBECRSNOKEYS 20278     /* The entire keyset must be defined for KEYSET cursors. */
00979 #define SYBECRSNOBIND  20279    /* Cursor bind must be called prior to updating cursor */
00980 #define SYBECRSFTYPE    20280   /* Unknown fetch type. */
00981 #define SYBECRSINVALID  20281   /* The cursor handle is invalid. */
00982 #define SYBECRSMROWS  20282     /* Multiple rows are returned, only one is expected. */
00983 #define SYBECRSNROWS 20283      /* No rows returned, at least one is expected. */
00984 #define SYBECRSNOLEN  20284     /* No unique index found. */
00985 #define SYBECRSNOPTCC 20285     /* No OPTCC was found. */
00986 #define SYBECRSNORDER  20286    /* The order of clauses must be from, where, and order by. */
00987 #define SYBECRSNOTABLE  20287   /* Table name is NULL. */
00988 #define SYBECRSNUNIQUE  20288   /* No unique keys associated with this view. */
00989 #define SYBECRSVAR  20289       /* There is no valid address associated with this bind. */
00990 #define SYBENOVALUE  20290      /* Security labels require both a name and a value */
00991 #define SYBEVOIDRET 20291       /* Parameter of type SYBVOID cannot  be a return parameter. */
00992 #define SYBECLOSEIN 20292       /* Unable to close interface file. */
00993 #define SYBEBOOL 20293          /* Boolean parameters must be TRUE or FALSE. */
00994 #define SYBEBCPOPT 20294        /* The %s option cannot be called while a bulk copy operation is progress. */
00995 #define SYBEERRLABEL 20295      /* An illegal value was returned from the security label handler. */
00996 #define SYBEATTNACK 20296       /* Timed out waiting for server to acknowledge attention." */
00997 #define SYBEBBFL 20297          /* -001- Batch failed in bulk-copy to SQL Server */
00998 #define SYBEDCL 20298           /* -004- DCL Error */
00999 #define SYBECS 20299            /* -004- cs context Error */
01000 #define SYBEBULKINSERT 20599    /* cannot build bulk insert statement */
01001 
01002 int dbtds(DBPROCESS * dbprocess);
01003 
01004 #define DBTDS(a)                dbtds(a)
01005 DBINT dbtextsize(DBPROCESS * dbprocess);
01006 int dbtsnewlen(DBPROCESS * dbprocess);
01007 DBBINARY *dbtsnewval(DBPROCESS * dbprocess);
01008 RETCODE dbtsput(DBPROCESS * dbprocess, DBBINARY * newts, int newtslen, int tabnum, char *tabname);
01009 DBBINARY *dbtxptr(DBPROCESS * dbproc, int column);
01010 DBBINARY *dbtxtimestamp(DBPROCESS * dbproc, int column);
01011 DBBINARY *dbtxtsnewval(DBPROCESS * dbprocess);
01012 RETCODE dbtxtsput(DBPROCESS * dbprocess, DBBINARY newtxts, int colnum);
01013 RETCODE dbuse(DBPROCESS * dbproc, char *name);
01014 DBBOOL dbcarylen(DBPROCESS * dbprocess, int column);
01015 const char *dbversion(void);
01016 DBBOOL dbwillconvert(int srctype, int desttype);
01017 RETCODE dbwritepage(DBPROCESS * dbprocess, char *p_dbname, DBINT pageno, DBINT size, BYTE * buf);
01018 RETCODE dbwritetext(DBPROCESS * dbproc, char *objname, DBBINARY * textptr, DBTINYINT textptrlen, DBBINARY * timestamp,
01019                     DBBOOL log, DBINT size, BYTE * text);
01020 int dbxlate(DBPROCESS * dbprocess, char *src, int srclen, char *dest, int destlen, DBXLATE * xlt, int *srcbytes_used,
01021             DBBOOL srcend, int status);
01022 
01023 /* LOGINREC manipulation */
01024 RETCODE dbsetlname(LOGINREC * login, const char *value, int which);
01025 RETCODE dbsetlbool(LOGINREC * login, int value, int which);
01026 RETCODE dbsetlshort(LOGINREC * login, int value, int which);
01027 RETCODE dbsetllong(LOGINREC * login, long value, int which);
01028 RETCODE dbsetlversion (LOGINREC * login, BYTE version);
01029 
01030 #define DBSETHOST               1
01031 #define DBSETLHOST(x,y)         dbsetlname((x), (y), DBSETHOST)
01032 #define DBSETUSER               2
01033 #define DBSETLUSER(x,y)         dbsetlname((x), (y), DBSETUSER)
01034 #define DBSETPWD                3
01035 #define DBSETLPWD(x,y)          dbsetlname((x), (y), DBSETPWD)
01036 #define DBSETHID                4       /* not implemented */
01037 #define DBSETLHID(x,y)          dbsetlname((x), (y), DBSETHID)
01038 #define DBSETAPP                5
01039 #define DBSETLAPP(x,y)          dbsetlname((x), (y), DBSETAPP)
01040 #define DBSETBCP                6
01041 #define BCP_SETL(x,y)           dbsetlbool((x), (y), DBSETBCP)
01042 #define DBSETNATLANG            7
01043 #define DBSETLNATLANG(x,y)      dbsetlname((x), (y), DBSETNATLANG)
01044 #define DBSETNOSHORT            8       /* not implemented */
01045 #define DBSETLNOSHORT(x,y)      dbsetlbool((x), (y), DBSETNOSHORT)
01046 #define DBSETHIER               9       /* not implemented */
01047 #define DBSETLHIER(x,y)         dbsetlshort((x), (y), DBSETHIER)
01048 #define DBSETCHARSET            10
01049 #define DBSETLCHARSET(x,y)      dbsetlname((x), (y), DBSETCHARSET)
01050 #define DBSETPACKET             11
01051 #define DBSETLPACKET(x,y)       dbsetllong((x), (y), DBSETPACKET)
01052 #define DBSETENCRYPT            12
01053 #define DBSETLENCRYPT(x,y)      dbsetlbool((x), (y), DBSETENCRYPT)
01054 #define DBSETLABELED            13
01055 #define DBSETLLABELED(x,y)      dbsetlbool((x), (y), DBSETLABELED)
01056 #define BCP_SETLABELED(x,y)     dbsetlbool((x), (y), DBSETLABELED)
01057 #define DBSETLVERSION(login, version) dbsetlversion((login), (version))
01058 
01059 RETCODE bcp_init(DBPROCESS * dbproc, const char *tblname, const char *hfile, const char *errfile, int direction);
01060 RETCODE bcp_done(DBPROCESS * dbproc);
01061 
01062 RETCODE bcp_batch(DBPROCESS * dbproc);
01063 RETCODE bcp_bind(DBPROCESS * dbproc, BYTE * varaddr, int prefixlen, DBINT varlen, BYTE * terminator, int termlen, int type,
01064                  int table_column);
01065 RETCODE bcp_collen(DBPROCESS * dbproc, DBINT varlen, int table_column);
01066 RETCODE bcp_columns(DBPROCESS * dbproc, int host_colcount);
01067 RETCODE bcp_colfmt(DBPROCESS * dbproc, int host_column, int host_type, int host_prefixlen, DBINT host_collen,
01068                    const BYTE * host_term, int host_termlen, int colnum);
01069 RETCODE bcp_colfmt_ps(DBPROCESS * dbproc, int host_column, int host_type, int host_prefixlen, DBINT host_collen,
01070                       BYTE * host_term, int host_termlen, int colnum, DBTYPEINFO * typeinfo);
01071 RETCODE bcp_colptr(DBPROCESS * dbproc, BYTE * colptr, int table_column);
01072 RETCODE bcp_control(DBPROCESS * dbproc, int field, DBINT value);
01073 RETCODE bcp_exec(DBPROCESS * dbproc, DBINT * rows_copied);
01074 DBBOOL bcp_getl(LOGINREC * login);
01075 RETCODE bcp_moretext(DBPROCESS * dbproc, DBINT size, BYTE * text);
01076 RETCODE bcp_options(DBPROCESS * dbproc, int option, BYTE * value, int valuelen);
01077 RETCODE bcp_readfmt(DBPROCESS * dbproc, char *filename);
01078 RETCODE bcp_sendrow(DBPROCESS * dbproc);
01079 RETCODE bcp_writefmt(DBPROCESS * dbproc, char *filename);
01080 
01081 void build_xact_string(char *xact_name, char *service_name, DBINT commid, char *result);
01082 RETCODE remove_xact(DBPROCESS * connect, DBINT commid, int n);
01083 RETCODE abort_xact(DBPROCESS * connect, DBINT commid);
01084 void close_commit(DBPROCESS * connect);
01085 RETCODE commit_xact(DBPROCESS * connect, DBINT commid);
01086 DBPROCESS *open_commit(LOGINREC * login, char *servername);
01087 RETCODE scan_xact(DBPROCESS * connect, DBINT commid);
01088 DBINT start_xact(DBPROCESS * connect, char *application_name, char *xact_name, int site_count);
01089 DBINT stat_xact(DBPROCESS * connect, DBINT commid);
01090 
01091 #ifdef __cplusplus
01092 #if 0
01093 {
01094 #endif
01095 }
01096 #endif
01097 
01098 #endif

Generated on Sat Nov 27 17:41:31 2004 for FreeTDS API by doxygen1.3