FreeTDS API
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
sybdb.h
Go to the documentation of this file.
1 /* FreeTDS - Library of routines accessing Sybase and Microsoft databases
2  * Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Brian Bruns
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19 
27 #ifndef _sybdb_h_
28 #define _sybdb_h_
29 
30 #include "tds_sysdep_public.h"
31 
32 #undef TDS_STATIC_CAST
33 #ifdef __cplusplus
34 #define TDS_STATIC_CAST(type, a) static_cast<type>(a)
35 extern "C"
36 {
37 #if 0
38 }
39 #endif
40 #else
41 #define TDS_STATIC_CAST(type, a) ((type)(a))
42 #endif
43 
44 static const char rcsid_sybdb_h[] = "$Id: sybdb.h,v 1.85 2007/12/02 23:01:37 jklowden Exp $";
45 static const void *const no_unused_sybdb_h_warn[] = { rcsid_sybdb_h, no_unused_sybdb_h_warn };
46 
47 #ifdef FALSE
48 #undef FALSE
49 #endif
50 #ifdef TRUE
51 #undef TRUE
52 #endif
53 #define FALSE 0
54 #define TRUE 1
55 
56 #define DBSAVE 1
57 #define DBNOSAVE 0
58 #define DBNOERR -1
59 
60 #define INT_EXIT 0
61 #define INT_CONTINUE 1
62 #define INT_CANCEL 2
63 #define INT_TIMEOUT 3
64 
65 #define DBMAXNUMLEN 33
66 #define DBMAXNAME 30
67 
71 #define DBVERSION_UNKNOWN 0
72 #define DBVERSION_46 1
73 #define DBVERSION_100 2
74 #define DBVERSION_42 3
75 #define DBVERSION_70 4
76 #define DBVERSION_80 5
77 
78 /* these two are defined by Microsoft for dbsetlversion() */
79 #define DBVER42 DBVERSION_42
80 #define DBVER60 DBVERSION_70 /* our best approximation */
81 
86 #define DBTDS_UNKNOWN 0
87 #define DBTDS_2_0 1 /* pre 4.0 SQL Server */
88 #define DBTDS_3_4 2 /* Microsoft SQL Server (3.0) */
89 #define DBTDS_4_0 3 /* 4.0 SQL Server */
90 #define DBTDS_4_2 4 /* 4.2 SQL Server */
91 #define DBTDS_4_6 5 /* 2.0 OpenServer and 4.6 SQL Server. */
92 #define DBTDS_4_9_5 6 /* 4.9.5 (NCR) SQL Server */
93 #define DBTDS_5_0 7 /* 5.0 SQL Server */
94 #define DBTDS_7_0 8 /* Microsoft SQL Server 7.0 */
95 #define DBTDS_8_0 9 /* Microsoft SQL Server 2000 */
96 #define DBTDS_9_0 10 /* Microsoft SQL Server 2005 */
97 
98 #define DBTXPLEN 16
99 
100 #define BCPMAXERRS 1
101 #define BCPFIRST 2
102 #define BCPLAST 3
103 #define BCPBATCH 4
104 #define BCPKEEPIDENTITY 8
105 
106 #define BCPLABELED 5
107 #define BCPHINTS 6
108 
109 #define DBCMDNONE 0
110 #define DBCMDPEND 1
111 #define DBCMDSENT 2
112 
113 typedef int RETCODE;
114 
115 typedef void DBCURSOR;
116 typedef void DBXLATE;
117 typedef void DBSORTORDER;
118 typedef void DBLOGINFO;
119 typedef void *DBVOIDPTR;
120 typedef short SHORT;
121 typedef unsigned short USHORT;
122 typedef int (*INTFUNCPTR) (void *, ...);
123 typedef int (*DBWAITFUNC) (void);
124 typedef DBWAITFUNC(*DB_DBBUSY_FUNC) (void *dbproc);
125 typedef void (*DB_DBIDLE_FUNC) (DBWAITFUNC dfunc, void *dbproc);
126 typedef int (*DB_DBCHKINTR_FUNC) (void *dbproc);
127 typedef int (*DB_DBHNDLINTR_FUNC) (void *dbproc);
128 
129 #ifndef __INCvxWorksh
130 /* VxWorks already defines STATUS and BOOL. Compiler gets mad if you
131 ** redefine them. */
132 /* __INCvxWorksh will get #defined by std. include files included from tds.h
133 */
134 #ifdef STATUS
135 /* On DU4.0d we get a conflicting STATUS definition from arpa/nameser.h
136  when _REENTRANT is defined.
137 */
138 #undef STATUS
139 #endif
140 typedef int STATUS;
141 #if !defined(_WINDEF_) && !defined(_WINDEF_H) && !defined(DOS32X)
142 typedef int BOOL;
143 #endif
144 #endif
145 
146 #if !defined(_FREETDS_LIBRARY_SOURCE) || !defined(_tds_h_)
147 /* copied from tds.h */
148 /* TODO find a best way... */
149 enum
150 {
151  SYBCHAR = 47, /* 0x2F */
152 #define SYBCHAR SYBCHAR
153  SYBVARCHAR = 39, /* 0x27 */
154 #define SYBVARCHAR SYBVARCHAR
155  SYBINTN = 38, /* 0x26 */
156 #define SYBINTN SYBINTN
157  SYBINT1 = 48, /* 0x30 */
158 #define SYBINT1 SYBINT1
159  SYBINT2 = 52, /* 0x34 */
160 #define SYBINT2 SYBINT2
161  SYBINT4 = 56, /* 0x38 */
162 #define SYBINT4 SYBINT4
163  SYBINT8 = 127, /* 0x7F */
164 #define SYBINT8 SYBINT8
165  SYBFLT8 = 62, /* 0x3E */
166 #define SYBFLT8 SYBFLT8
167  SYBDATETIME = 61, /* 0x3D */
168 #define SYBDATETIME SYBDATETIME
169  SYBBIT = 50, /* 0x32 */
170 #define SYBBIT SYBBIT
171  SYBTEXT = 35, /* 0x23 */
172 #define SYBTEXT SYBTEXT
173  SYBIMAGE = 34, /* 0x22 */
174 #define SYBIMAGE SYBIMAGE
175  SYBMONEY4 = 122, /* 0x7A */
176 #define SYBMONEY4 SYBMONEY4
177  SYBMONEY = 60, /* 0x3C */
178 #define SYBMONEY SYBMONEY
179  SYBDATETIME4 = 58, /* 0x3A */
180 #define SYBDATETIME4 SYBDATETIME4
181  SYBREAL = 59, /* 0x3B */
182 #define SYBREAL SYBREAL
183  SYBBINARY = 45, /* 0x2D */
184 #define SYBBINARY SYBBINARY
185  SYBVARBINARY = 37, /* 0x25 */
186 #define SYBVARBINARY SYBVARBINARY
187  SYBNUMERIC = 108, /* 0x6C */
188 #define SYBNUMERIC SYBNUMERIC
189  SYBDECIMAL = 106, /* 0x6A */
190 #define SYBDECIMAL SYBDECIMAL
191  SYBFLTN = 109, /* 0x6D */
192 #define SYBFLTN SYBFLTN
193  SYBMONEYN = 110, /* 0x6E */
194 #define SYBMONEYN SYBMONEYN
195  SYBDATETIMN = 111 /* 0x6F */
196 #define SYBDATETIMN SYBDATETIMN
197 };
198 
199 #define SYBAOPCNT 0x4b
200 #define SYBAOPCNTU 0x4c
201 #define SYBAOPSUM 0x4d
202 #define SYBAOPSUMU 0x4e
203 #define SYBAOPAVG 0x4f
204 #define SYBAOPAVGU 0x50
205 #define SYBAOPMIN 0x51
206 #define SYBAOPMAX 0x52
207 
208 /* mssql2k compute operator */
209 #define SYBAOPCNT_BIG 0x09
210 #define SYBAOPSTDEV 0x30
211 #define SYBAOPSTDEVP 0x31
212 #define SYBAOPVAR 0x32
213 #define SYBAOPVARP 0x33
214 #define SYBAOPCHECKSUM_AGG 0x72
215 
216 #endif
217 
218 typedef unsigned char DBBOOL;
219 typedef char DBCHAR;
220 typedef unsigned char DBBIT;
221 typedef unsigned char DBTINYINT;
222 typedef tds_sysdep_int16_type DBSMALLINT;
223 typedef tds_sysdep_int32_type DBINT;
224 typedef unsigned char DBBINARY;
225 typedef tds_sysdep_real32_type DBREAL;
226 typedef tds_sysdep_real64_type DBFLT8;
227 typedef unsigned tds_sysdep_int16_type DBUSMALLINT;
228 
229 typedef struct
230 {
231  DBINT len;
232  char str[256];
233 } DBVARYCHAR;
234 
235 typedef struct
236 {
237  unsigned char precision;
238  unsigned char scale;
239  unsigned char array[33];
240 } DBNUMERIC;
241 
242 typedef DBNUMERIC DBDECIMAL;
243 
244 typedef struct
245 {
246  DBINT mnyhigh;
247  unsigned tds_sysdep_int32_type mnylow;
248 } DBMONEY;
249 
250 typedef struct
251 {
252  DBINT mny4;
253 } DBMONEY4;
254 
255 typedef struct
256 {
257  DBINT dtdays;
258  DBINT dttime;
259 } DBDATETIME;
260 
261 typedef struct
262 {
263  DBUSMALLINT days;
264  DBUSMALLINT minutes;
265 } DBDATETIME4;
266 
267 #ifdef MSDBLIB
268 #define SQLCHAR SYBCHAR
269 #endif
270 
271 typedef struct tds_dblib_loginrec LOGINREC;
272 
273 #ifndef DOS32X
274 typedef unsigned char BYTE;
275 #endif
276 
277 typedef struct dbtypeinfo
278 {
279  DBINT precision;
280  DBINT scale;
281 } DBTYPEINFO;
282 
283 struct dbstring
284 {
285  BYTE *strtext;
286  DBINT strtotlen;
287  struct dbstring *strnext;
288 };
289 typedef struct dbstring DBSTRING;
290 
291 /* Used by dbcolinfo */
292 enum
293 { MAXCOLNAMELEN = 512 }; /* duplicates TDS_SYSNAME_SIZE */
294 typedef enum { CI_REGULAR=1, CI_ALTERNATE=2, CI_CURSOR=3 } CI_TYPE;
295 
296 typedef struct
297 {
298  DBINT SizeOfStruct;
299  DBCHAR Name[MAXCOLNAMELEN+2];
300  DBCHAR ActualName[MAXCOLNAMELEN+2];
301  DBCHAR TableName[MAXCOLNAMELEN+2];
302  SHORT Type;
303  DBINT UserType;
304  DBINT MaxLength;
305  BYTE Precision;
306  BYTE Scale;
307  BOOL VarLength;
308  BYTE Null;
309  BYTE CaseSensitive;
310  BYTE Updatable;
311  BOOL Identity;
312 
313 } DBCOL;
314 /* end dbcolinfo stuff */
315 
316 
317 
318 /* a large list of options, DBTEXTSIZE is needed by sybtcl */
319 #define DBPARSEONLY 0
320 #define DBESTIMATE 1
321 #define DBSHOWPLAN 2
322 #define DBNOEXEC 3
323 #define DBARITHIGNORE 4
324 #define DBNOCOUNT 5
325 #define DBARITHABORT 6
326 #define DBTEXTLIMIT 7
327 #define DBBROWSE 8
328 #define DBOFFSET 9
329 #define DBSTAT 10
330 #define DBERRLVL 11
331 #define DBCONFIRM 12
332 #define DBSTORPROCID 13
333 #define DBBUFFER 14
334 #define DBNOAUTOFREE 15
335 #define DBROWCOUNT 16
336 #define DBTEXTSIZE 17
337 #define DBNATLANG 18
338 #define DBDATEFORMAT 19
339 #define DBPRPAD 20
340 #define DBPRCOLSEP 21
341 #define DBPRLINELEN 22
342 #define DBPRLINESEP 23
343 #define DBLFCONVERT 24
344 #define DBDATEFIRST 25
345 #define DBCHAINXACTS 26
346 #define DBFIPSFLAG 27
347 #define DBISOLATION 28
348 #define DBAUTH 29
349 #define DBIDENTITY 30
350 #define DBNOIDCOL 31
351 #define DBDATESHORT 32
352 #define DBCLIENTCURSORS 33
353 #define DBSETTIME 34
354 #define DBQUOTEDIDENT 35
355 
356 #define DBNUMOPTIONS 36
357 
358 #define DBPADOFF 0
359 #define DBPADON 1
360 
361 #define OFF 0
362 #define ON 1
363 
364 #define NOSUCHOPTION 2
365 
366 #define MAXOPTTEXT 32
367 
368 typedef struct tds_dblib_dbprocess DBPROCESS;
369 
370 typedef struct dbdaterec
371 {
372 #ifdef MSDBLIB
373  DBINT year;
374  DBINT month;
375  DBINT day;
376  DBINT dayofyear;
377  DBINT weekday;
378  DBINT hour;
379  DBINT minute;
380  DBINT second;
381  DBINT millisecond;
382  DBINT tzone;
383 #else
384  DBINT dateyear;
385  DBINT datemonth;
386  DBINT datedmonth;
387  DBINT datedyear;
388  DBINT datedweek;
389  DBINT datehour;
390  DBINT dateminute;
391  DBINT datesecond;
392  DBINT datemsecond;
393  DBINT datetzone;
394 #endif
395 } DBDATEREC;
396 
397 typedef int (*EHANDLEFUNC) (DBPROCESS * dbproc, int severity, int dberr, int oserr, char *dberrstr, char *oserrstr);
398 
399 typedef int (*MHANDLEFUNC) (DBPROCESS * dbproc, DBINT msgno, int msgstate, int severity, char *msgtext, char *srvname,
400  char *proc, int line);
401 
402 /* dbpoll() result codes, sybtcl needs DBRESULT */
403 #define DBRESULT 1
404 #define DBNOTIFICATION 2
405 #define DBTIMEOUT 3
406 #define DBINTERRUPT 4
407 
408 /* more sybtcl needs: */
409 #define DBTXTSLEN 8
410 
411 /* bind types */
412 #define CHARBIND 0
413 #define STRINGBIND 1
414 #define NTBSTRINGBIND 2
415 #define VARYCHARBIND 3
416 #define VARYBINBIND 4
417 #define TINYBIND 6
418 #define SMALLBIND 7
419 #define INTBIND 8
420 #define FLT8BIND 9
421 #define REALBIND 10
422 #define DATETIMEBIND 11
423 #define SMALLDATETIMEBIND 12
424 #define MONEYBIND 13
425 #define SMALLMONEYBIND 14
426 #define BINARYBIND 15
427 #define BITBIND 16
428 #define NUMERICBIND 17
429 #define DECIMALBIND 18
430 #define MAXBINDTYPES 19 /* keep last */
431 
432 #define DBPRCOLSEP 21
433 #define DBPRLINELEN 22
434 #define DBRPCRETURN 1
435 #define DBRPCDEFAULT 2
436 
437 #define REG_ROW -1
438 #define MORE_ROWS -1
439 #define NO_MORE_ROWS -2
440 #define BUF_FULL -3
441 #define NO_MORE_RESULTS 2
442 #define SUCCEED 1
443 #define FAIL 0
444 
445 #define DB_IN 1
446 #define DB_OUT 2
447 #define DB_QUERYOUT 3
448 
449 #define DBSINGLE 0
450 #define DBDOUBLE 1
451 #define DBBOTH 2
452 
453 /* remote procedure call (rpc) options */
454 #define DBRPCRECOMPILE TDS_STATIC_CAST(DBSMALLINT, 0x0001)
455 #define DBRPCRESET TDS_STATIC_CAST(DBSMALLINT, 0x0002)
456 #define DBRPCCURSOR TDS_STATIC_CAST(DBSMALLINT, 0x0008)
457 
458 DBBOOL db12hour(DBPROCESS * dbprocess, char *language);
459 BYTE *dbadata(DBPROCESS * dbproc, int computeid, int column);
460 DBINT dbadlen(DBPROCESS * dbproc, int computeid, int column);
461 RETCODE dbaltbind(DBPROCESS * dbprocess, int computeid, int column, int vartype, DBINT varlen, BYTE * varaddr);
462 RETCODE dbaltbind_ps(DBPROCESS * dbprocess, int computeid, int column, int vartype, DBINT varlen, BYTE * varaddr,
463  DBTYPEINFO * typeinfo);
464 int dbaltcolid(DBPROCESS * dbproc, int computeid, int column);
465 RETCODE dbaltlen(DBPROCESS * dbproc, int computeid, int column);
466 int dbaltop(DBPROCESS * dbproc, int computeid, int column);
467 int dbalttype(DBPROCESS * dbproc, int computeid, int column);
468 RETCODE dbaltutype(DBPROCESS * dbproc, int computeid, int column);
469 RETCODE dbanullbind(DBPROCESS * dbprocess, int computeid, int column, DBINT * indicator);
470 RETCODE dbbind(DBPROCESS * dbproc, int column, int vartype, DBINT varlen, BYTE * varaddr);
471 RETCODE dbbind_ps(DBPROCESS * dbprocess, int column, int vartype, DBINT varlen, BYTE * varaddr, DBTYPEINFO * typeinfo);
472 int dbbufsize(DBPROCESS * dbprocess);
473 BYTE *dbbylist(DBPROCESS * dbproc, int computeid, int *size);
474 RETCODE dbcancel(DBPROCESS * dbproc);
475 RETCODE dbcanquery(DBPROCESS * dbproc);
476 char *dbchange(DBPROCESS * dbprocess);
477 DBBOOL dbcharsetconv(DBPROCESS * dbprocess);
478 void dbclose(DBPROCESS * dbproc);
479 void dbclrbuf(DBPROCESS * dbproc, DBINT n);
480 RETCODE dbclropt(DBPROCESS * dbproc, int option, char *param);
481 RETCODE dbcmd(DBPROCESS * dbproc, const char *cmdstring);
482 RETCODE dbcmdrow(DBPROCESS * dbproc);
483 
484 #define DBCMDROW(x) dbcmdrow((x))
485 DBBOOL dbcolbrowse(DBPROCESS * dbprocess, int colnum);
486 RETCODE dbcolinfo (DBPROCESS *dbproc, CI_TYPE type, DBINT column, DBINT computeid, DBCOL *pdbcol);
487 RETCODE dbtablecolinfo (DBPROCESS *dbproc, DBINT column, DBCOL *pdbcol );
488 DBINT dbcollen(DBPROCESS * dbproc, int column);
489 char *dbcolname(DBPROCESS * dbproc, int column);
490 char *dbcolsource(DBPROCESS * dbproc, int colnum);
491 int dbcoltype(DBPROCESS * dbproc, int column);
492 DBTYPEINFO *dbcoltypeinfo(DBPROCESS * dbproc, int column);
493 DBINT dbcolutype(DBPROCESS * dbprocess, int column);
494 DBINT dbconvert(DBPROCESS * dbproc, int srctype, const BYTE * src, DBINT srclen, int desttype, BYTE * dest, DBINT destlen);
495 DBINT dbconvert_ps(DBPROCESS * dbprocess, int srctype, BYTE * src, DBINT srclen, int desttype, BYTE * dest, DBINT destlen,
496  DBTYPEINFO * typeinfo);
497 DBINT dbcount(DBPROCESS * dbproc);
498 
499 #define DBCOUNT(x) dbcount((x))
500 int dbcurcmd(DBPROCESS * dbproc);
501 
502 #define DBCURCMD(x) dbcurcmd((x))
503 DBINT dbcurrow(DBPROCESS * dbproc);
504 
505 #define DBCURROW(x) dbcurrow((x))
506 RETCODE dbcursor(DBCURSOR * hc, DBINT optype, DBINT bufno, BYTE * table, BYTE * values);
507 RETCODE dbcursorbind(DBCURSOR * hc, int col, int vartype, DBINT varlen, DBINT * poutlen, BYTE * pvaraddr, DBTYPEINFO * typeinfo);
508 void dbcursorclose(DBCURSOR * hc);
509 RETCODE dbcursorcolinfo(DBCURSOR * hc, DBINT column, DBCHAR * colname, DBINT * coltype, DBINT * collen, DBINT * usertype);
510 RETCODE dbcursorfetch(DBCURSOR * hc, DBINT fetchtype, DBINT rownum);
511 RETCODE dbcursorinfo(DBCURSOR * hc, DBINT * ncols, DBINT * nrows);
512 DBCURSOR *dbcursoropen(DBPROCESS * dbprocess, BYTE * stmt, SHORT scollopt, SHORT concuropt, USHORT nrows, DBINT * pstatus);
513 BYTE *dbdata(DBPROCESS * dbproc, int column);
514 int dbdate4cmp(DBPROCESS * dbprocess, DBDATETIME4 * d1, DBDATETIME4 * d2);
515 RETCODE dbdate4zero(DBPROCESS * dbprocess, DBDATETIME4 * d1);
516 RETCODE dbdatechar(DBPROCESS * dbprocess, char *buf, int datepart, int value);
517 RETCODE dbdatecmp(DBPROCESS * dbproc, DBDATETIME * d1, DBDATETIME * d2);
518 RETCODE dbdatecrack(DBPROCESS * dbproc, DBDATEREC * di, DBDATETIME * dt);
519 int dbdatename(DBPROCESS * dbprocess, char *buf, int date, DBDATETIME * datetime);
520 char *dateorder(DBPROCESS * dbprocess, char *language);
521 DBINT dbdatepart(DBPROCESS * dbprocess, int datepart, DBDATETIME * datetime);
522 RETCODE dbdatezero(DBPROCESS * dbprocess, DBDATETIME * d1);
523 DBINT dbdatlen(DBPROCESS * dbproc, int column);
524 char *dbdayname(DBPROCESS * dbprocess, char *language, int daynum);
525 DBBOOL dbdead(DBPROCESS * dbproc);
526 
527 #define DBDEAD(x) dbdead((x))
528 EHANDLEFUNC dberrhandle(EHANDLEFUNC handler);
529 void dbexit(void);
530 RETCODE dbfcmd(DBPROCESS * dbproc, const char *fmt, ...);
531 DBINT dbfirstrow(DBPROCESS * dbproc);
532 
533 #define DBFIRSTROW(x) dbfirstrow((x))
534 RETCODE dbfree_xlate(DBPROCESS * dbprocess, DBXLATE * xlt_tosrv, DBXLATE * clt_todisp);
535 void dbfreebuf(DBPROCESS * dbproc);
536 void dbfreequal(char *qualptr);
537 RETCODE dbfreesort(DBPROCESS * dbprocess, DBSORTORDER * sortorder);
538 char *dbgetchar(DBPROCESS * dbprocess, int n);
539 char *dbgetcharset(DBPROCESS * dbprocess);
540 RETCODE dbgetloginfo(DBPROCESS * dbprocess, DBLOGINFO ** loginfo);
541 int dbgetlusername(LOGINREC * login, BYTE * name_buffer, int buffer_len);
542 int dbgetmaxprocs(void);
543 char *dbgetnatlanf(DBPROCESS * dbprocess);
544 int dbgetoff(DBPROCESS * dbprocess, DBUSMALLINT offtype, int startfrom);
545 int dbgetpacket(DBPROCESS * dbproc);
546 RETCODE dbgetrow(DBPROCESS * dbproc, DBINT row);
547 int dbgettime(void);
548 #define DBGETTIME dbgettime
549 BYTE *dbgetuserdata(DBPROCESS * dbproc);
550 DBBOOL dbhasretstat(DBPROCESS * dbproc);
551 RETCODE dbinit(void);
552 int dbiordesc(DBPROCESS * dbproc);
553 
554 #define DBIORDESC(x) dbiordesc((x))
555 int dbiowdesc(DBPROCESS * dbproc);
556 
557 #define DBIOWDESC(x) dbiowdesc((x))
558 DBBOOL dbisavail(DBPROCESS * dbprocess);
559 
560 #define DBISAVAIL(x) dbisavail((x))
561 DBBOOL dbisopt(DBPROCESS * dbproc, int option, char *param);
562 DBINT dblastrow(DBPROCESS * dbproc);
563 
564 #define DBLASTROW(x) dblastrow((x))
565 RETCODE dbload_xlate(DBPROCESS * dbprocess, char *srv_charset, char *clt_name, DBXLATE ** xlt_tosrv, DBXLATE ** xlt_todisp);
566 DBSORTORDER *dbloadsort(DBPROCESS * dbprocess);
567 LOGINREC *dblogin(void);
568 void dbloginfree(LOGINREC * login);
569 RETCODE dbmny4add(DBPROCESS * dbproc, DBMONEY4 * m1, DBMONEY4 * m2, DBMONEY4 * sum);
570 int dbmny4cmp(DBPROCESS * dbproc, DBMONEY4 * m1, DBMONEY4 * m2);
571 RETCODE dbmny4copy(DBPROCESS * dbprocess, DBMONEY4 * m1, DBMONEY4 * m2);
572 RETCODE dbmny4divide(DBPROCESS * dbproc, DBMONEY4 * m1, DBMONEY4 * m2, DBMONEY4 * quotient);
573 RETCODE dbmny4minus(DBPROCESS * dbproc, DBMONEY4 * src, DBMONEY4 * dest);
574 RETCODE dbmny4mul(DBPROCESS * dbproc, DBMONEY4 * m1, DBMONEY4 * m2, DBMONEY4 * prod);
575 RETCODE dbmny4sub(DBPROCESS * dbproc, DBMONEY4 * m1, DBMONEY4 * m2, DBMONEY4 * diff);
576 RETCODE dbmny4zero(DBPROCESS * dbproc, DBMONEY4 * dest);
577 RETCODE dbmnyadd(DBPROCESS * dbproc, DBMONEY * m1, DBMONEY * m2, DBMONEY * sum);
578 int dbmnycmp(DBPROCESS * dbproc, DBMONEY * m1, DBMONEY * m2);
579 RETCODE dbmnycopy(DBPROCESS * dbproc, DBMONEY * src, DBMONEY * dest);
580 RETCODE dbmnydec(DBPROCESS * dbproc, DBMONEY * mnyptr);
581 RETCODE dbmnydivide(DBPROCESS * dbproc, DBMONEY * m1, DBMONEY * m2, DBMONEY * quotient);
582 RETCODE dbmnydown(DBPROCESS * dbproc, DBMONEY * mnyptr, int divisor, int *remainder);
583 RETCODE dbmnyinc(DBPROCESS * dbproc, DBMONEY * mnyptr);
584 RETCODE dbmnyinit(DBPROCESS * dbproc, DBMONEY * mnyptr, int trim, DBBOOL * negative);
585 RETCODE dbmnymaxneg(DBPROCESS * dbproc, DBMONEY * dest);
586 RETCODE dbmnyndigit(DBPROCESS * dbproc, DBMONEY * mnyptr, DBCHAR * value, DBBOOL * zero);
587 RETCODE dbmnymaxpos(DBPROCESS * dbproc, DBMONEY * dest);
588 RETCODE dbmnyminus(DBPROCESS * dbproc, DBMONEY * src, DBMONEY * dest);
589 RETCODE dbmnymul(DBPROCESS * dbproc, DBMONEY * m1, DBMONEY * m2, DBMONEY * prod);
590 RETCODE dbmnydigit(DBPROCESS * dbprocess, DBMONEY * m1, DBCHAR * value, DBBOOL * zero);
591 RETCODE dbmnyscale(DBPROCESS * dbproc, DBMONEY * dest, int multiplier, int addend);
592 RETCODE dbmnysub(DBPROCESS * dbproc, DBMONEY * m1, DBMONEY * m2, DBMONEY * diff);
593 RETCODE dbmnyzero(DBPROCESS * dbproc, DBMONEY * dest);
594 const char *dbmonthname(DBPROCESS * dbproc, char *language, int monthnum, DBBOOL shortform);
595 RETCODE dbmorecmds(DBPROCESS * dbproc);
596 
597 #define DBMORECMDS(x) dbmorecmds((x))
598 RETCODE dbmoretext(DBPROCESS * dbproc, DBINT size, BYTE * text);
599 MHANDLEFUNC dbmsghandle(MHANDLEFUNC handler);
600 char *dbname(DBPROCESS * dbproc);
601 RETCODE dbnextrow(DBPROCESS * dbproc);
602 RETCODE dbnpcreate(DBPROCESS * dbprocess);
603 RETCODE dbnpdefine(DBPROCESS * dbprocess, DBCHAR * procedure_name, DBSMALLINT namelen);
604 RETCODE dbnullbind(DBPROCESS * dbproc, int column, DBINT * indicator);
605 int dbnumalts(DBPROCESS * dbproc, int computeid);
606 int dbnumcols(DBPROCESS * dbproc);
607 int dbnumcompute(DBPROCESS * dbprocess);
608 int DBNUMORDERS(DBPROCESS * dbprocess);
609 int dbnumrets(DBPROCESS * dbproc);
610 DBPROCESS *tdsdbopen(LOGINREC * login, const char *server, int msdblib);
611 DBPROCESS *dbopen(LOGINREC * login, const char *server);
612 
613 #ifdef MSDBLIB
614 #define dbopen(x,y) tdsdbopen((x),(y), 1)
615 #else
616 #define dbopen(x,y) tdsdbopen((x),(y), 0)
617 #endif
618 
619 /* fix PHP problem */
620 #ifdef PHP_SYBASE_DBOPEN
621 #undef PHP_SYBASE_DBOPEN
622 #define PHP_SYBASE_DBOPEN dbopen
623 #endif
624 
625 int dbordercol(DBPROCESS * dbprocess, int order);
626 RETCODE dbpoll(DBPROCESS * dbproc, long milliseconds, DBPROCESS ** ready_dbproc, int *return_reason);
627 void dbprhead(DBPROCESS * dbproc);
628 RETCODE dbprrow(DBPROCESS * dbproc);
629 const char *dbprtype(int token);
630 char *dbqual(DBPROCESS * dbprocess, int tabnum, char *tabname);
631 DBBOOL DRBUF(DBPROCESS * dbprocess);
632 DBINT dbreadpage(DBPROCESS * dbprocess, char *p_dbname, DBINT pageno, BYTE * buf);
633 STATUS dbreadtext(DBPROCESS * dbproc, void *buf, DBINT bufsize);
634 void dbrecftos(char *filename);
635 RETCODE dbrecvpassthru(DBPROCESS * dbprocess, DBVOIDPTR * bufp);
636 RETCODE dbregdrop(DBPROCESS * dbprocess, DBCHAR * procnm, DBSMALLINT namelen);
637 RETCODE dbregexec(DBPROCESS * dbproc, DBUSMALLINT options);
638 RETCODE dbreghandle(DBPROCESS * dbprocess, DBCHAR * procnm, DBSMALLINT namelen, INTFUNCPTR handler);
639 RETCODE dbreginit(DBPROCESS * dbproc, DBCHAR * procedure_name, DBSMALLINT namelen);
640 RETCODE dbreglist(DBPROCESS * dbproc);
641 RETCODE dbregnowatch(DBPROCESS * dbprocess, DBCHAR * procnm, DBSMALLINT namelen);
642 RETCODE dbregparam(DBPROCESS * dbproc, char *param_name, int type, DBINT datalen, BYTE * data);
643 RETCODE dbregwatch(DBPROCESS * dbprocess, DBCHAR * procnm, DBSMALLINT namelen, DBUSMALLINT options);
644 RETCODE dbregwatchlist(DBPROCESS * dbprocess);
645 RETCODE dbresults(DBPROCESS * dbproc);
646 RETCODE dbresults_r(DBPROCESS * dbproc, int recursive);
647 BYTE *dbretdata(DBPROCESS * dbproc, int retnum);
648 int dbretlen(DBPROCESS * dbproc, int retnum);
649 char *dbretname(DBPROCESS * dbproc, int retnum);
650 DBINT dbretstatus(DBPROCESS * dbproc);
651 int dbrettype(DBPROCESS * dbproc, int retnum);
652 RETCODE dbrows(DBPROCESS * dbproc);
653 
654 #define DBROWS(x) dbrows((x))
655 STATUS dbrowtype(DBPROCESS * dbprocess);
656 
657 #define DBROWTYPE(x) dbrowtype((x))
658 RETCODE dbrpcinit(DBPROCESS * dbproc, char *rpcname, DBSMALLINT options);
659 RETCODE dbrpcparam(DBPROCESS * dbproc, char *paramname, BYTE status, int type, DBINT maxlen, DBINT datalen, BYTE * value);
660 RETCODE dbrpcsend(DBPROCESS * dbproc);
661 void dbrpwclr(LOGINREC * login);
662 RETCODE dbrpwset(LOGINREC * login, char *srvname, char *password, int pwlen);
663 RETCODE dbsafestr(DBPROCESS * dbproc, const char *src, DBINT srclen, char *dest, DBINT destlen, int quotetype);
664 RETCODE *dbsechandle(DBINT type, INTFUNCPTR handler);
665 RETCODE dbsendpassthru(DBPROCESS * dbprocess, DBVOIDPTR bufp);
666 char *dbservcharset(DBPROCESS * dbprocess);
667 void dbsetavail(DBPROCESS * dbprocess);
668 void dbsetbusy(DBPROCESS * dbprocess, DB_DBBUSY_FUNC busyfunc);
669 RETCODE dbsetdefcharset(char *charset);
670 RETCODE dbsetdeflang(char *language);
671 void dbsetidle(DBPROCESS * dbprocess, DB_DBIDLE_FUNC idlefunc);
672 void dbsetifile(char *filename);
673 void dbsetinterrupt(DBPROCESS * dbproc, DB_DBCHKINTR_FUNC chkintr, DB_DBHNDLINTR_FUNC hndlintr);
674 RETCODE dbsetloginfo(LOGINREC * loginrec, DBLOGINFO * loginfo);
675 RETCODE dbsetlogintime(int seconds);
676 RETCODE dbsetmaxprocs(int maxprocs);
677 RETCODE dbsetnull(DBPROCESS * dbprocess, int bindtype, int bindlen, BYTE * bindval);
678 RETCODE dbsetopt(DBPROCESS * dbproc, int option, const char *char_param, int int_param);
679 STATUS dbsetrow(DBPROCESS * dbprocess, DBINT row);
680 RETCODE dbsettime(int seconds);
681 void dbsetuserdata(DBPROCESS * dbproc, BYTE * ptr);
682 RETCODE dbsetversion(DBINT version);
683 
684 int dbspid(DBPROCESS * dbproc);
685 RETCODE dbspr1row(DBPROCESS * dbproc, char *buffer, DBINT buf_len);
686 DBINT dbspr1rowlen(DBPROCESS * dbproc);
687 RETCODE dbsprhead(DBPROCESS * dbproc, char *buffer, DBINT buf_len);
688 RETCODE dbsprline(DBPROCESS * dbproc, char *buffer, DBINT buf_len, DBCHAR line_char);
689 RETCODE dbsqlexec(DBPROCESS * dbproc);
690 RETCODE dbsqlok(DBPROCESS * dbproc);
691 RETCODE dbsqlsend(DBPROCESS * dbproc);
692 int dbstrbuild(DBPROCESS * dbproc, char *charbuf, int bufsize, char *text, char *formats, ...);
693 int dbstrcmp(DBPROCESS * dbprocess, char *s1, int l1, char *s2, int l2, DBSORTORDER * sort);
694 RETCODE dbstrcpy(DBPROCESS * dbproc, int start, int numbytes, char *dest);
695 int dbstrlen(DBPROCESS * dbproc);
696 int dbstrsort(DBPROCESS * dbprocess, char *s1, int l1, char *s2, int l2, DBSORTORDER * sort);
697 DBBOOL dbtabbrowse(DBPROCESS * dbprocess, int tabnum);
698 int dbtabcount(DBPROCESS * dbprocess);
699 char *dbtabname(DBPROCESS * dbprocess, int tabnum);
700 char *dbtabsoruce(DBPROCESS * dbprocess, int colnum, int *tabnum);
701 DBINT dbvarylen(DBPROCESS * dbproc, int column);
702 
703 #define SYBEICONVIU 2400 /* Some character(s) could not be converted into client's character set. */
704 #define SYBEICONVAVAIL 2401 /* Character set conversion is not available between client character set '%.*s' and server character set '%.*s'.*/
705 #define SYBEICONVO 2402 /* Error converting characters into server's character set. Some character(s) could not be converted.*/
706 #define SYBEICONVI 2403 /* Some character(s) could not be converted into client's character set. Unconverted bytes were changed to question marks ('?').*/
707 #define SYBEICONV2BIG 2404 /* Buffer overflow converting characters from client into server's character set.*/
708  /* cf. doc/dblib_errors.txt for more iconv error values. */
709  /* Reserve a few slots for other iconv-related issues. */
710 #define SYBETDSVER 2410 /* Cannot bcp with TDSVER < 5.0 */
711 #define SYBESYNC 20001 /* Read attempted while out of synchronization with SQL Server. */
712 #define SYBEFCON 20002 /* SQL Server connection failed. */
713 #define SYBETIME 20003 /* SQL Server connection timed out. */
714 #define SYBEREAD 20004 /* Read from SQL Server failed. */
715 #define SYBEBUFL 20005 /* DB-LIBRARY internal error - send buffer length corrupted. */
716 #define SYBEWRIT 20006 /* Write to SQL Server failed. */
717 #define SYBEVMS 20007 /* Sendflush: VMS I/O error. */
718 #define SYBESOCK 20008 /* Unable to open socket */
719 #define SYBECONN 20009 /* Unable to connect socket -- SQL Server is unavailable or does not exist. */
720 #define SYBEMEM 20010 /* Unable to allocate sufficient memory */
721 #define SYBEDBPS 20011 /* Maximum number of DBPROCESSes already allocated. */
722 #define SYBEINTF 20012 /* Server name not found in interface file */
723 #define SYBEUHST 20013 /* Unknown host machine name */
724 #define SYBEPWD 20014 /* Incorrect password. */
725 #define SYBEOPIN 20015 /* Could not open interface file. */
726 #define SYBEINLN 20016 /* Interface file: unexpected end-of-line. */
727 #define SYBESEOF 20017 /* Unexpected EOF from SQL Server. */
728 #define SYBESMSG 20018 /* General SQL Server error: Check messages from the SQL Server. */
729 #define SYBERPND 20019 /* Attempt to initiate a new SQL Server operation with results pending. */
730 #define SYBEBTOK 20020 /* Bad token from SQL Server: Data-stream processing out of sync. */
731 #define SYBEITIM 20021 /* Illegal timeout value specified. */
732 #define SYBEOOB 20022 /* Error in sending out-of-band data to SQL Server. */
733 #define SYBEBTYP 20023 /* Unknown bind type passed to DB-LIBRARY function. */
734 #define SYBEBNCR 20024 /* Attempt to bind user variable to a non-existent compute row. */
735 #define SYBEIICL 20025 /* Illegal integer column length returned by SQL Server. Legal integer lengths are 1, 2, and 4 bytes. */
736 #define SYBECNOR 20026 /* Column number out of range. */
737 #define SYBENPRM 20027 /* NULL parameter not allowed for this dboption. */
738 #define SYBEUVDT 20028 /* Unknown variable-length datatype encountered. */
739 #define SYBEUFDT 20029 /* Unknown fixed-length datatype encountered. */
740 #define SYBEWAID 20030 /* DB-LIBRARY internal error: ALTFMT following ALTNAME has wrong id. */
741 #define SYBECDNS 20031 /* Datastream indicates that a compute column is derived from a non-existent select-list member. */
742 #define SYBEABNC 20032 /* Attempt to bind to a non-existent column. */
743 #define SYBEABMT 20033 /* User attempted a dbbind() with mismatched column and variable types. */
744 #define SYBEABNP 20034 /* Attempt to bind using NULL pointers. */
745 #define SYBEAAMT 20035 /* User attempted a dbaltbind() with mismatched column and variable types. */
746 #define SYBENXID 20036 /* The Server did not grant us a distributed-transaction ID. */
747 #define SYBERXID 20037 /* The Server did not recognize our distributed-transaction ID. */
748 #define SYBEICN 20038 /* Invalid computeid or compute column number. */
749 #define SYBENMOB 20039 /* No such member of 'order by' clause. */
750 #define SYBEAPUT 20040 /* Attempt to print unknown token. */
751 #define SYBEASNL 20041 /* Attempt to set fields in a null loginrec. */
752 #define SYBENTLL 20042 /* Name too long for loginrec field. */
753 #define SYBEASUL 20043 /* Attempt to set unknown loginrec field. */
754 #define SYBERDNR 20044 /* Attempt to retrieve data from a non-existent row. */
755 #define SYBENSIP 20045 /* Negative starting index passed to dbstrcpy(). */
756 #define SYBEABNV 20046 /* Attempt to bind to a NULL program variable. */
757 #define SYBEDDNE 20047 /* DBPROCESS is dead or not enabled. */
758 #define SYBECUFL 20048 /* Data-conversion resulted in underflow. */
759 #define SYBECOFL 20049 /* Data-conversion resulted in overflow. */
760 #define SYBECSYN 20050 /* Attempt to convert data stopped by syntax error in source field. */
761 #define SYBECLPR 20051 /* Data-conversion resulted in loss of precision. */
762 #define SYBECNOV 20052 /* Attempt to set variable to NULL resulted in overflow. */
763 #define SYBERDCN 20053 /* Requested data-conversion does not exist. */
764 #define SYBESFOV 20054 /* dbsafestr() overflowed its destination buffer. */
765 #define SYBEUNT 20055 /* Unknown network type found in interface file. */
766 #define SYBECLOS 20056 /* Error in closing network connection. */
767 #define SYBEUAVE 20057 /* Unable to allocate VMS event flag. */
768 #define SYBEUSCT 20058 /* Unable to set communications timer. */
769 #define SYBEEQVA 20059 /* Error in queueing VMS AST routine. */
770 #define SYBEUDTY 20060 /* Unknown datatype encountered. */
771 #define SYBETSIT 20061 /* Attempt to call dbtsput() with an invalid timestamp. */
772 #define SYBEAUTN 20062 /* Attempt to update the timestamp of a table which has no timestamp column. */
773 #define SYBEBDIO 20063 /* Bad bulk-copy direction. Must be either IN or OUT. */
774 #define SYBEBCNT 20064 /* Attempt to use Bulk Copy with a non-existent Server table. */
775 #define SYBEIFNB 20065 /* Illegal field number passed to bcp_control(). */
776 #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. */
777 #define SYBEKBCO 20067 /* 1000 rows successfully bulk-copied to host-file. */
778 #define SYBEBBCI 20068 /* Batch successfully bulk-copied to SQL Server. */
779 #define SYBEKBCI 20069 /* Bcp: 1000 rows sent to SQL Server. */
780 #define SYBEBCRE 20070 /* I/O error while reading bcp data-file. */
781 #define SYBETPTN 20071 /* Syntax error: only two periods are permitted in table names. */
782 #define SYBEBCWE 20072 /* I/O error while writing bcp data-file. */
783 #define SYBEBCNN 20073 /* Attempt to bulk-copy a NULL value into Server column %d, which does not accept NULL values. */
784 #define SYBEBCOR 20074 /* Attempt to bulk-copy an oversized row to the SQL Server. */
785 #define SYBEBCIS 20075 /* Attempt to bulk-copy an illegally-sized column value to the SQL Server. */
786 #define SYBEBCPI 20076 /* bcp_init() must be called before any other bcp routines. */
787 #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. */
788 #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. */
789 #define SYBEVDPT 20079 /* For bulk copy, all variable-length data must have either a length-prefix or a terminator specified. */
790 #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. */
791 #define SYBEBCBC 20081 /* bcp_columns() must be called before bcp_colfmt() and bcp_colfmt_ps(). */
792 #define SYBEBCFO 20082 /* Bcp host-files must contain at least one column. */
793 #define SYBEBCVH 20083 /* bcp_exec() may be called only after bcp_init() has been passed a valid host file. */
794 #define SYBEBCUO 20084 /* Bcp: Unable to open host data-file. */
795 #define SYBEBCUC 20085 /* Bcp: Unable to close host data-file. */
796 #define SYBEBUOE 20086 /* Bcp: Unable to open error-file. */
797 #define SYBEBUCE 20087 /* Bcp: Unable to close error-file. */
798 #define SYBEBWEF 20088 /* I/O error while writing bcp error-file. */
799 #define SYBEASTF 20089 /* VMS: Unable to setmode for control_c ast. */
800 #define SYBEUACS 20090 /* VMS: Unable to assign channel to sys$command. */
801 #define SYBEASEC 20091 /* Attempt to send an empty command buffer to the SQL Server. */
802 #define SYBETMTD 20092 /* Attempt to send too much TEXT data via the dbmoretext() call. */
803 #define SYBENTTN 20093 /* Attempt to use dbtxtsput() to put a new text-timestamp into a non-existent data row. */
804 #define SYBEDNTI 20094 /* Attempt to use dbtxtsput() to put a new text-timestamp into a column whose datatype is neither SYBTEXT nor SYBIMAGE. */
805 #define SYBEBTMT 20095 /* Attempt to send too much TEXT data via the bcp_moretext() call. */
806 #define SYBEORPF 20096 /* Attempt to set remote password would overflow the login-record's remote-password field. */
807 #define SYBEUVBF 20097 /* Attempt to read an unknown version of BCP format-file. */
808 #define SYBEBUOF 20098 /* Bcp: Unable to open format-file. */
809 #define SYBEBUCF 20099 /* Bcp: Unable to close format-file. */
810 #define SYBEBRFF 20100 /* I/O error while reading bcp format-file. */
811 #define SYBEBWFF 20101 /* I/O error while writing bcp format-file. */
812 #define SYBEBUDF 20102 /* Bcp: Unrecognized datatype found in format-file. */
813 #define SYBEBIHC 20103 /* Incorrect host-column number found in bcp format-file. */
814 #define SYBEBEOF 20104 /* Unexpected EOF encountered in BCP data-file. */
815 #define SYBEBCNL 20105 /* Negative length-prefix found in BCP data-file. */
816 #define SYBEBCSI 20106 /* Host-file columns may be skipped only when copying INto the Server. */
817 #define SYBEBCIT 20107 /* It's illegal to use BCP terminators with program variables other than SYBCHAR, SYBBINARY, SYBTEXT, or SYBIMAGE. */
818 #define SYBEBCSA 20108 /* The BCP hostfile '%s' contains only %ld rows. Skipping all of these rows is not allowed. */
819 #define SYBENULL 20109 /* NULL DBPROCESS pointer passed to DB-Library. */
820 #define SYBEUNAM 20110 /* Unable to get current username from operating system. */
821 #define SYBEBCRO 20111 /* The BCP hostfile '%s' contains only %ld rows. It was impossible to read the requested %ld rows. */
822 #define SYBEMPLL 20112 /* Attempt to set maximum number of DBPROCESSes lower than 1. */
823 #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. */
824 #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. */
825 #define SYBEUNOP 20115 /* Unknown option passed to dbsetopt(). */
826 #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. */
827 #define SYBERTCC 20117 /* dbreadtext() may not be used to receive the results of a query which contains a COMPUTE clause. */
828 #define SYBERTSC 20118 /* dbreadtext() may only be used to receive the results of a query which contains a single result column. */
829 #define SYBEUCRR 20119 /* Internal software error: Unknown connection result reported by * dbpasswd(). */
830 #define SYBERPNA 20120 /* The RPC facility is available only when using a SQL Server whose version number is 4.0 or greater. */
831 #define SYBEOPNA 20121 /* The text/image facility is available only when using a SQL Server whose version number is 4.0 or greater. */
832 #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. */
833 #define SYBECWLL 20123 /* Attempt to set column width less than 1. */
834 #define SYBEUFDS 20124 /* Unrecognized format encountered in dbstrbuild(). */
835 #define SYBEUCPT 20125 /* Unrecognized custom-format parameter-type encountered in dbstrbuild(). */
836 #define SYBETMCF 20126 /* Attempt to install too many custom formats via dbfmtinstall(). */
837 #define SYBEAICF 20127 /* Error in attempting to install custom format. */
838 #define SYBEADST 20128 /* Error in attempting to determine the size of a pair of translation tables. */
839 #define SYBEALTT 20129 /* Error in attempting to load a pair of translation tables. */
840 #define SYBEAPCT 20130 /* Error in attempting to perform a character-set translation. */
841 #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. */
842 #define SYBEFSHD 20132 /* Error in attempting to find the Sybase home directory. */
843 #define SYBEAOLF 20133 /* Error in attempting to open a localization file. */
844 #define SYBEARDI 20134 /* Error in attempting to read datetime information from a localization file. */
845 #define SYBEURCI 20135 /* Unable to read copyright information from the dblib localization file. */
846 #define SYBEARDL 20136 /* Error in attempting to read the dblib.loc localization file. */
847 #define SYBEURMI 20137 /* Unable to read money-format information from the dblib localization file. */
848 #define SYBEUREM 20138 /* Unable to read error mnemonic from the dblib localization file. */
849 #define SYBEURES 20139 /* Unable to read error string from the dblib localization file. */
850 #define SYBEUREI 20140 /* Unable to read error information from the dblib localization file. */
851 #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. */
852 #define SYBEISOI 20142 /* Invalid sort-order information found. */
853 #define SYBEIDCL 20143 /* Illegal datetime column length returned by DataServer. Legal datetime lengths are 4 and 8 bytes. */
854 #define SYBEIMCL 20144 /* Illegal money column length returned by DataServer. Legal money lengths are 4 and 8 bytes. */
855 #define SYBEIFCL 20145 /* Illegal floating-point column length returned by DataServer. Legal floating-point lengths are 4 and 8 bytes. */
856 #define SYBEUTDS 20146 /* Unrecognized TDS version received from SQL Server. */
857 #define SYBEBUFF 20147 /* Bcp: Unable to create format-file. */
858 #define SYBEACNV 20148 /* Attemp to do conversion with NULL destination variable. */
859 #define SYBEDPOR 20149 /* Out-of-range datepart constant. */
860 #define SYBENDC 20150 /* Cannot have negative component in date in numeric form. */
861 #define SYBEMVOR 20151 /* Month values must be between 1 and 12. */
862 #define SYBEDVOR 20152 /* Day values must be between 1 and 7. */
863 #define SYBENBVP 20153 /* Cannot pass dbsetnull() a NULL bindval pointer. */
864 #define SYBESPID 20154 /* Called dbspid() with a NULL dbproc. */
865 #define SYBENDTP 20155 /* Called dbdatecrack() with a NULL datetime parameter. */
866 #define SYBEXTN 20156 /* The xlt_todisp and xlt_tosrv parameters to dbfree_xlate() were NULL. */
867 #define SYBEXTDN 20157 /* Warning: the xlt_todisp parameter to dbfree_xlate() was NULL. The space associated with the xlt_tosrv parameter has been freed. */
868 #define SYBEXTSN 20158 /* Warning: the xlt_tosrv parameter to dbfree_xlate() was NULL. The space associated with the xlt_todisp parameter has been freed. */
869 #define SYBENUM 20159 /* Incorrect number of arguments given to DB-Library. */
870 #define SYBETYPE 20160 /* Invalid argument type given to DB-Library. */
871 #define SYBEGENOS 20161 /* General Operating System Error. */
872 #define SYBEPAGE 20162 /* wrong resource type or length given for dbpage() operation. */
873 #define SYBEOPTNO 20163 /* Option is not allowed or is unreconized */
874 #define SYBEETD 20164 /* Failure to send the expected amount of TEXT or IMAGE data via dbmoretext(). */
875 #define SYBERTYPE 20165 /* Invalid resource type given to DB-Library. */
876 #define SYBERFILE 20166 /* "Can not open resource file." */
877 #define SYBEFMODE 20167 /* Read/Write/Append mode denied on file. */
878 #define SYBESLCT 20168 /* Could not select or copy field specified */
879 #define SYBEZTXT 20169 /* Attempt to send zero length TEXT or IMAGE to dataserver via dbwritetext(). */
880 #define SYBENTST 20170 /* The file being opened must be a stream_lf. */
881 #define SYBEOSSL 20171 /* Operating system login level not in range of Secure SQL Server */
882 #define SYBEESSL 20172 /* Login security level entered does not agree with operating system level */
883 #define SYBENLNL 20173 /* Program not linked with specified network library. */
884 #define SYBENHAN 20174 /* called dbrecvpassthru() with a NULL handler parameter. */
885 #define SYBENBUF 20175 /* called dbsendpassthru() with a NULL buf pointer. */
886 #define SYBENULP 20176 /* Called %s with a NULL %s parameter. */
887 #define SYBENOTI 20177 /* No event handler installed. */
888 #define SYBEEVOP 20178 /* Called dbregwatch() with a bad options parameter. */
889 #define SYBENEHA 20179 /* Called dbreghandle() with a NULL handler parameter. */
890 #define SYBETRAN 20180 /* DBPROCESS is being used for another transaction. */
891 #define SYBEEVST 20181 /* Must initiate a transaction before calling dbregparam(). */
892 #define SYBEEINI 20182 /* Must call dbreginit() before dbregraise(). */
893 #define SYBEECRT 20183 /* Must call dbregdefine() before dbregcreate(). */
894 #define SYBEECAN 20184 /* Attempted to cancel unrequested event notification. */
895 #define SYBEEUNR 20185 /* Unsolicited event notification received. */
896 #define SYBERPCS 20186 /* Must call dbrpcinit() before dbrpcparam(). */
897 #define SYBETPAR 20187 /* No SYBTEXT or SYBIMAGE parameters were defined. */
898 #define SYBETEXS 20188 /* Called dbmoretext() with a bad size parameter. */
899 #define SYBETRAC 20189 /* Attempted to turn off a trace flag that was not on. */
900 #define SYBETRAS 20190 /* DB-Library internal error - trace structure not found. */
901 #define SYBEPRTF 20191 /* dbtracestring() may only be called from a printfunc(). */
902 #define SYBETRSN 20192 /* Bad numbytes parameter passed to dbtracestring(). */
903 #define SYBEBPKS 20193 /* In DBSETLPACKET(), the packet size parameter must be between 0 and 999999. */
904 #define SYBEIPV 20194 /* %1! is an illegal value for the %2! parameter of %3!. */
905 #define SYBEMOV 20195 /* Money arithmetic resulted in overflow in function %1!. */
906 #define SYBEDIVZ 20196 /* Attempt to divide by $0.00 in function %1!. */
907 #define SYBEASTL 20197 /* Synchronous I/O attempted at AST level. */
908 #define SYBESEFA 20198 /* DBSETNOTIFS cannot be called if connections are present. */
909 #define SYBEPOLL 20199 /* Only one dbpoll() can be active at a time. */
910 #define SYBENOEV 20200 /* dbpoll() cannot be called if registered procedure notifications have been disabled. */
911 #define SYBEBADPK 20201 /* Packet size of %1! not supported. -- size of %2! used instead. */
912 #define SYBESECURE 20202 /* Secure Server function not supported in this version. */
913 #define SYBECAP 20203 /* DB-Library capabilities not accepted by the Server. */
914 #define SYBEFUNC 20204 /* Functionality not supported at the specified version level. */
915 #define SYBERESP 20205 /* Response function address passed to dbresponse() must be non-NULL. */
916 #define SYBEIVERS 20206 /* Illegal version level specified. */
917 #define SYBEONCE 20207 /* Function can be called only once. */
918 #define SYBERPNULL 20208 /* value parameter for dbprcparam() can be NULL, only if the datalen parameter is 0 */
919 #define SYBERPTXTIM 20209 /* RPC parameters cannot be of type Text/Image. */
920 #define SYBENEG 20210 /* Negotiated login attempt failed. */
921 #define SYBELBLEN 20211 /* Security labels should be less than 256 characters long. */
922 #define SYBEUMSG 20212 /* Unknown message-id in MSG datastream. */
923 #define SYBECAPTYP 20213 /* Unexpected capability type in CAPABILITY datastream. */
924 #define SYBEBNUM 20214 /* Bad numbytes parameter passed to dbstrcpy() */
925 #define SYBEBBL 20215 /* Bad bindlen parameter passed to dbsetnull() */
926 #define SYBEBPREC 20216 /* Illegal precision specified */
927 #define SYBEBSCALE 20217 /* Illegal scale specified */
928 #define SYBECDOMAIN 20218 /* Source field value is not within the domain of legal values. */
929 #define SYBECINTERNAL 20219 /* Internal Conversion error. */
930 #define SYBEBTYPSRV 20220 /* Datatype is not supported by the server. */
931 #define SYBEBCSET 20221 /* Unknown character-set encountered." */
932 #define SYBEFENC 20222 /* Password Encryption failed." */
933 #define SYBEFRES 20223 /* Challenge-Response function failed.", */
934 #define SYBEISRVPREC 20224 /* Illegal precision value returned by the server. */
935 #define SYBEISRVSCL 20225 /* Illegal scale value returned by the server. */
936 #define SYBEINUMCL 20226 /* Invalid numeric column length returned by the server. */
937 #define SYBEIDECCL 20227 /* Invalid decimal column length returned by the server. */
938 #define SYBEBCMTXT 20228 /* bcp_moretext() may be used only when there is at least one text or image column in the server table. */
939 #define SYBEBCPREC 20229 /* Column %1!: Illegal precision value encountered. */
940 #define SYBEBCBNPR 20230 /* bcp_bind(): if varaddr is NULL, prefixlen must be 0 and no terminator should be specified. */
941 #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. */
942 #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. */
943 #define SYBEBCPCTYP 20233 /* bcp_colfmt(): If table_colnum is 0, host_type cannot be 0. */
944 #define SYBEBCVLEN 20234 /* varlen should be greater than or equal to -1. */
945 #define SYBEBCHLEN 20235 /* host_collen should be greater than or equal to -1. */
946 #define SYBEBCBPREF 20236 /* Illegal prefix length. Legal values are 0, 1, 2 or 4. */
947 #define SYBEBCPREF 20237 /* Illegal prefix length. Legal values are -1, 0, 1, 2 or 4. */
948 #define SYBEBCITBNM 20238 /* bcp_init(): tblname parameter cannot be NULL. */
949 #define SYBEBCITBLEN 20239 /* bcp_init(): tblname parameter is too long. */
950 #define SYBEBCSNDROW 20240 /* bcp_sendrow() may NOT be called unless all text data for the previous row has been sent using bcp_moretext(). */
951 #define SYBEBPROCOL 20241 /* bcp protocol error: returned column count differs from the actual number of columns received. */
952 #define SYBEBPRODEF 20242 /* bcp protocol error: expected default information and got none. */
953 #define SYBEBPRONUMDEF 20243 /* bcp protocol error: expected number of defaults differs from the actual number of defaults received. */
954 #define SYBEBPRODEFID 20244 /* bcp protocol error: default column id and actual column id are not same */
955 #define SYBEBPRONODEF 20245 /* bcp protocol error: default value received for column that does not have default. */
956 #define SYBEBPRODEFTYP 20246 /* bcp protocol error: default value datatype differs from column datatype. */
957 #define SYBEBPROEXTDEF 20247 /* bcp protocol error: more than one row of default information received. */
958 #define SYBEBPROEXTRES 20248 /* bcp protocol error: unexpected set of results received. */
959 #define SYBEBPROBADDEF 20249 /* bcp protocol error: illegal default column id received. */
960 #define SYBEBPROBADTYP 20250 /* bcp protocol error: unknown column datatype. */
961 #define SYBEBPROBADLEN 20251 /* bcp protocol error: illegal datatype length received. */
962 #define SYBEBPROBADPREC 20252 /* bcp protocol error: illegal precision value received. */
963 #define SYBEBPROBADSCL 20253 /* bcp protocol error: illegal scale value received. */
964 #define SYBEBADTYPE 20254 /* Illegal value for type parameter given to %1!. */
965 #define SYBECRSNORES 20255 /* Cursor statement generated no results. */
966 #define SYBECRSNOIND 20256 /* One of the tables involved in the cursor statement does not have a unique index. */
967 #define SYBECRSVIEW 20257 /* A view cannot be joined with another table or a view in a cursor statement. */
968 #define SYBECRSVIIND 20258 /* The view used in the cursor statement does not include all the unique index columns of the underlying tables. */
969 #define SYBECRSORD 20259 /* Only fully keyset driven cursors can have 'order by', ' group by', or 'having' phrases. */
970 #define SYBECRSBUFR 20260 /* Row buffering should not be turned on when using cursor APIs. */
971 #define SYBECRSNOFREE 20261 /* The DBNOAUTOFREE option should not be turned on when using cursor APIs. */
972 #define SYBECRSDIS 20262 /* Cursor statement contains one of the disallowed phrases 'compute', 'union', 'for browse', or 'select into'. */
973 #define SYBECRSAGR 20263 /* Aggregate functions are not allowed in a cursor statement. */
974 #define SYBECRSFRAND 20264 /* Fetch types RANDOM and RELATIVE can only be used within the keyset of keyset driven cursors. */
975 #define SYBECRSFLAST 20265 /* Fetch type LAST requires fully keyset driven cursors. */
976 #define SYBECRSBROL 20266 /* Backward scrolling cannot be used in a forward scrolling cursor. */
977 #define SYBECRSFROWN 20267 /* Row number to be fetched is outside valid range. */
978 #define SYBECRSBSKEY 20268 /* Keyset cannot be scrolled backward in mixed cursors with a previous fetch type. */
979 #define SYBECRSRO 20269 /* Data locking or modifications cannot be made in a READONLY cursor. */
980 #define SYBECRSNOCOUNT 20270 /* The DBNOCOUNT option should not be turned on when doing updates or deletes with dbcursor(). */
981 #define SYBECRSTAB 20271 /* Table name must be determined in operations involving data locking or modifications. */
982 #define SYBECRSUPDNB 20272 /* Update or insert operations cannot use bind variables when binding type is NOBIND. */
983 #define SYBECRSNOWHERE 20273 /* A WHERE clause is not allowed in a cursor update or insert. */
984 #define SYBECRSSET 20274 /* A SET clause is required for a cursor update or insert. */
985 #define SYBECRSUPDTAB 20275 /* Update or insert operations using bind variables require single table cursors. */
986 #define SYBECRSNOUPD 20276 /* Update or delete operation did not affect any rows. */
987 #define SYBECRSINV 20277 /* Invalid cursor statement. */
988 #define SYBECRSNOKEYS 20278 /* The entire keyset must be defined for KEYSET cursors. */
989 #define SYBECRSNOBIND 20279 /* Cursor bind must be called prior to updating cursor */
990 #define SYBECRSFTYPE 20280 /* Unknown fetch type. */
991 #define SYBECRSINVALID 20281 /* The cursor handle is invalid. */
992 #define SYBECRSMROWS 20282 /* Multiple rows are returned, only one is expected. */
993 #define SYBECRSNROWS 20283 /* No rows returned, at least one is expected. */
994 #define SYBECRSNOLEN 20284 /* No unique index found. */
995 #define SYBECRSNOPTCC 20285 /* No OPTCC was found. */
996 #define SYBECRSNORDER 20286 /* The order of clauses must be from, where, and order by. */
997 #define SYBECRSNOTABLE 20287 /* Table name is NULL. */
998 #define SYBECRSNUNIQUE 20288 /* No unique keys associated with this view. */
999 #define SYBECRSVAR 20289 /* There is no valid address associated with this bind. */
1000 #define SYBENOVALUE 20290 /* Security labels require both a name and a value */
1001 #define SYBEVOIDRET 20291 /* Parameter of type SYBVOID cannot be a return parameter. */
1002 #define SYBECLOSEIN 20292 /* Unable to close interface file. */
1003 #define SYBEBOOL 20293 /* Boolean parameters must be TRUE or FALSE. */
1004 #define SYBEBCPOPT 20294 /* The option cannot be called while a bulk copy operation is progress. */
1005 #define SYBEERRLABEL 20295 /* An illegal value was returned from the security label handler. */
1006 #define SYBEATTNACK 20296 /* Timed out waiting for server to acknowledge attention." */
1007 #define SYBEBBFL 20297 /* -001- Batch failed in bulk-copy to SQL Server */
1008 #define SYBEDCL 20298 /* -004- DCL Error */
1009 #define SYBECS 20299 /* -004- cs context Error */
1010 #define SYBEBULKINSERT 20599 /* cannot build bulk insert statement */
1011 
1012 int dbtds(DBPROCESS * dbprocess);
1013 
1014 #define DBTDS(a) dbtds(a)
1015 DBINT dbtextsize(DBPROCESS * dbprocess);
1016 int dbtsnewlen(DBPROCESS * dbprocess);
1017 DBBINARY *dbtsnewval(DBPROCESS * dbprocess);
1018 RETCODE dbtsput(DBPROCESS * dbprocess, DBBINARY * newts, int newtslen, int tabnum, char *tabname);
1019 DBBINARY *dbtxptr(DBPROCESS * dbproc, int column);
1020 DBBINARY *dbtxtimestamp(DBPROCESS * dbproc, int column);
1021 DBBINARY *dbtxtsnewval(DBPROCESS * dbprocess);
1022 RETCODE dbtxtsput(DBPROCESS * dbprocess, DBBINARY newtxts, int colnum);
1023 RETCODE dbuse(DBPROCESS * dbproc, const char *name);
1024 const char *dbversion(void);
1025 DBBOOL dbwillconvert(int srctype, int desttype);
1026 RETCODE dbwritepage(DBPROCESS * dbprocess, char *p_dbname, DBINT pageno, DBINT size, BYTE * buf);
1027 RETCODE dbwritetext(DBPROCESS * dbproc, char *objname, DBBINARY * textptr, DBTINYINT textptrlen, DBBINARY * timestamp,
1028  DBBOOL log, DBINT size, BYTE * text);
1029 int dbxlate(DBPROCESS * dbprocess, char *src, int srclen, char *dest, int destlen, DBXLATE * xlt, int *srcbytes_used,
1030  DBBOOL srcend, int status);
1031 
1032 /* LOGINREC manipulation */
1033 RETCODE dbsetlname(LOGINREC * login, const char *value, int which);
1034 RETCODE dbsetlbool(LOGINREC * login, int value, int which);
1035 RETCODE dbsetlshort(LOGINREC * login, int value, int which);
1036 RETCODE dbsetllong(LOGINREC * login, long value, int which);
1037 RETCODE dbsetlversion (LOGINREC * login, BYTE version);
1038 
1039 #define DBSETHOST 1
1040 #define DBSETLHOST(x,y) dbsetlname((x), (y), DBSETHOST)
1041 #define dbsetlhost(x,y) dbsetlname((x), (y), DBSETHOST)
1042 #define DBSETUSER 2
1043 #define DBSETLUSER(x,y) dbsetlname((x), (y), DBSETUSER)
1044 #define dbsetluser(x,y) dbsetlname((x), (y), DBSETUSER)
1045 #define DBSETPWD 3
1046 #define DBSETLPWD(x,y) dbsetlname((x), (y), DBSETPWD)
1047 #define dbsetlpwd(x,y) dbsetlname((x), (y), DBSETPWD)
1048 #define DBSETHID 4 /* not implemented */
1049 #define DBSETLHID(x,y) dbsetlname((x), (y), DBSETHID)
1050 #define DBSETAPP 5
1051 #define DBSETLAPP(x,y) dbsetlname((x), (y), DBSETAPP)
1052 #define dbsetlapp(x,y) dbsetlname((x), (y), DBSETAPP)
1053 #define DBSETBCP 6
1054 #define BCP_SETL(x,y) dbsetlbool((x), (y), DBSETBCP)
1055 #define DBSETNATLANG 7
1056 #define DBSETLNATLANG(x,y) dbsetlname((x), (y), DBSETNATLANG)
1057 #define dbsetlnatlang(x,y) dbsetlname((x), (y), DBSETNATLANG)
1058 #define DBSETNOSHORT 8 /* not implemented */
1059 #define DBSETLNOSHORT(x,y) dbsetlbool((x), (y), DBSETNOSHORT)
1060 #define DBSETHIER 9 /* not implemented */
1061 #define DBSETLHIER(x,y) dbsetlshort((x), (y), DBSETHIER)
1062 #define DBSETCHARSET 10
1063 #define DBSETLCHARSET(x,y) dbsetlname((x), (y), DBSETCHARSET)
1064 #define DBSETPACKET 11
1065 #define DBSETLPACKET(x,y) dbsetllong((x), (y), DBSETPACKET)
1066 #define dbsetlpacket(x,y) dbsetllong((x), (y), DBSETPACKET)
1067 #define DBSETENCRYPT 12
1068 #define DBSETLENCRYPT(x,y) dbsetlbool((x), (y), DBSETENCRYPT)
1069 #define DBSETLABELED 13
1070 #define DBSETLLABELED(x,y) dbsetlbool((x), (y), DBSETLABELED)
1071 #define BCP_SETLABELED(x,y) dbsetlbool((x), (y), DBSETLABELED)
1072 #define DBSETLVERSION(login, version) dbsetlversion((login), (version))
1073 
1074 RETCODE bcp_init(DBPROCESS * dbproc, const char *tblname, const char *hfile, const char *errfile, int direction);
1075 RETCODE bcp_done(DBPROCESS * dbproc);
1076 
1077 RETCODE bcp_batch(DBPROCESS * dbproc);
1078 RETCODE bcp_bind(DBPROCESS * dbproc, BYTE * varaddr, int prefixlen, DBINT varlen, BYTE * terminator, int termlen, int type,
1079  int table_column);
1080 RETCODE bcp_collen(DBPROCESS * dbproc, DBINT varlen, int table_column);
1081 RETCODE bcp_columns(DBPROCESS * dbproc, int host_colcount);
1082 RETCODE bcp_colfmt(DBPROCESS * dbproc, int host_column, int host_type, int host_prefixlen, DBINT host_collen,
1083  const BYTE * host_term, int host_termlen, int colnum);
1084 RETCODE bcp_colfmt_ps(DBPROCESS * dbproc, int host_column, int host_type, int host_prefixlen, DBINT host_collen,
1085  BYTE * host_term, int host_termlen, int colnum, DBTYPEINFO * typeinfo);
1086 RETCODE bcp_colptr(DBPROCESS * dbproc, BYTE * colptr, int table_column);
1087 RETCODE bcp_control(DBPROCESS * dbproc, int field, DBINT value);
1088 int bcp_getbatchsize(DBPROCESS * dbproc); /* FreeTDS only */
1089 RETCODE bcp_exec(DBPROCESS * dbproc, DBINT * rows_copied);
1090 DBBOOL bcp_getl(LOGINREC * login);
1091 RETCODE bcp_moretext(DBPROCESS * dbproc, DBINT size, BYTE * text);
1092 RETCODE bcp_options(DBPROCESS * dbproc, int option, BYTE * value, int valuelen);
1093 RETCODE bcp_readfmt(DBPROCESS * dbproc, char *filename);
1094 RETCODE bcp_sendrow(DBPROCESS * dbproc);
1095 RETCODE bcp_writefmt(DBPROCESS * dbproc, char *filename);
1096 
1097 void build_xact_string(char *xact_name, char *service_name, DBINT commid, char *result);
1098 RETCODE remove_xact(DBPROCESS * connect, DBINT commid, int n);
1099 RETCODE abort_xact(DBPROCESS * connect, DBINT commid);
1100 void close_commit(DBPROCESS * connect);
1101 RETCODE commit_xact(DBPROCESS * connect, DBINT commid);
1102 DBPROCESS *open_commit(LOGINREC * login, char *servername);
1103 RETCODE scan_xact(DBPROCESS * connect, DBINT commid);
1104 DBINT start_xact(DBPROCESS * connect, char *application_name, char *xact_name, int site_count);
1105 DBINT stat_xact(DBPROCESS * connect, DBINT commid);
1106 
1107 #ifdef __cplusplus
1108 #if 0
1109 {
1110 #endif
1111 }
1112 #endif
1113 
1114 #endif
void dbloginfree(LOGINREC *login)
free the LOGINREC
Definition: dblib.c:716
void dbsetifile(char *filename)
set name and location of the interfaces file FreeTDS should use to look up a servername.
Definition: dblib.c:2580
int dbstrlen(DBPROCESS *dbproc)
Get size of the command buffer, in bytes.
Definition: dblib.c:5943
RETCODE dbmny4minus(DBPROCESS *dbproc, DBMONEY4 *src, DBMONEY4 *dest)
Negate a DBMONEY4 value.
Definition: dblib.c:5243
DBBOOL dbdead(DBPROCESS *dbproc)
Check if dbproc is an ex-parrot.
Definition: dblib.c:4745
DBINT dbspr1rowlen(DBPROCESS *dbproc)
Determine size buffer required to hold the results returned by dbsprhead(), dbsprline(), and dbspr1row().
Definition: dblib.c:3115
RETCODE bcp_exec(DBPROCESS *dbproc, DBINT *rows_copied)
Write a datafile to a table.
Definition: bcp.c:2065
DBINT dbaltutype(DBPROCESS *dbproc, int computeid, int column)
Get user-defined datatype of a compute column.
Definition: dblib.c:6786
RETCODE dbmny4divide(DBPROCESS *dbproc, DBMONEY4 *m1, DBMONEY4 *m2, DBMONEY4 *quotient)
Divide two DBMONEY4 values.
Definition: dblib.c:5386
DBINT bcp_batch(DBPROCESS *dbproc)
Commit a set of rows to the table.
Definition: bcp.c:2982
MHANDLEFUNC dbmsghandle(MHANDLEFUNC handler)
Set a message handler, for messages from the server.
Definition: dblib.c:4827
RETCODE dbinit(void)
Initialize db-lib.
Definition: dblib.c:643
RETCODE dbrpcparam(DBPROCESS *dbproc, char *paramname, BYTE status, int type, DBINT maxlen, DBINT datalen, BYTE *value)
Add a parameter to a remote procedure call.
Definition: rpc.c:158
RETCODE dbbind(DBPROCESS *dbproc, int column, int vartype, DBINT varlen, BYTE *varaddr)
Tie a host variable to a resultset column.
Definition: dblib.c:2502
RETCODE dbmny4mul(DBPROCESS *dbproc, DBMONEY4 *m1, DBMONEY4 *m2, DBMONEY4 *prod)
Multiply two DBMONEY4 values.
Definition: dblib.c:5358
char * dbcolsource(DBPROCESS *dbproc, int column)
Get base database column name for a result set column.
Definition: dblib.c:2930
RETCODE bcp_colfmt_ps(DBPROCESS *dbproc, int host_colnum, int host_type, int host_prefixlen, DBINT host_collen, BYTE *host_term, int host_termlen, int table_colnum, DBTYPEINFO *typeinfo)
Specify the format of a host file for bulk copy purposes, with precision and scale support for numeri...
Definition: bcp.c:538
int dbalttype(DBPROCESS *dbproc, int computeid, int column)
Get datatype for a compute column.
Definition: dblib.c:4037
RETCODE bcp_bind(DBPROCESS *dbproc, BYTE *varaddr, int prefixlen, DBINT varlen, BYTE *terminator, int termlen, int vartype, int table_column)
Bind a program host variable to a database column.
Definition: bcp.c:3069
RETCODE bcp_moretext(DBPROCESS *dbproc, DBINT size, BYTE *text)
Write some text or image data to the server.
Definition: bcp.c:2955
void dbsetuserdata(DBPROCESS *dbproc, BYTE *ptr)
Associate client-allocated (and defined) data with a DBPROCESS.
Definition: dblib.c:5606
RETCODE dbsetlshort(LOGINREC *login, int value, int which)
Set an integer value in a LOGINREC structure.
Definition: dblib.c:824
RETCODE dbmnyminus(DBPROCESS *dbproc, DBMONEY *src, DBMONEY *dest)
Negate a DBMONEY value.
Definition: dblib.c:5215
DBINT dbretstatus(DBPROCESS *dbproc)
Fetch status value returned by query or remote procedure call.
Definition: dblib.c:4380
Definition: dblib.h:46
char * dbgetchar(DBPROCESS *dbproc, int pos)
Get address of a position in the command buffer.
Definition: dblib.c:5962
void dbsetinterrupt(DBPROCESS *dbproc, DB_DBCHKINTR_FUNC chkintr, DB_DBHNDLINTR_FUNC hndlintr)
Set interrupt handler for db-lib to use while blocked against a read from the server.
Definition: dblib.c:4337
int dbaltcolid(DBPROCESS *dbproc, int computeid, int column)
Get column ID of a compute column.
Definition: dblib.c:3981
void dbprhead(DBPROCESS *dbproc)
Print result set headings to stdout.
Definition: dblib.c:3656
RETCODE dbregparam(DBPROCESS *dbproc, char *param_name, int type, DBINT datalen, BYTE *data)
Describe parameter of registered procedure .
Definition: dblib.c:6585
char * dbname(DBPROCESS *dbproc)
Get name of current database.
Definition: dblib.c:6678
DBINT dbcount(DBPROCESS *dbproc)
Get count of rows processed.
Definition: dblib.c:2676
BYTE * dbbylist(DBPROCESS *dbproc, int computeid, int *size)
Get bylist for a compute row.
Definition: dblib.c:4686
int dbretlen(DBPROCESS *dbproc, int retnum)
Get size of an output parameter filled by a stored procedure.
Definition: dblib.c:4489
Definition: sybdb.h:370
int dbrettype(DBPROCESS *dbproc, int retnum)
Get datatype of a stored procedure&#39;s return parameter.
Definition: dblib.c:5918
RETCODE bcp_readfmt(DBPROCESS *dbproc, char *filename)
Read a format definition file.
Definition: bcp.c:2643
DBBOOL dbisopt(DBPROCESS *dbproc, int option, char *param)
Get value of an option.
Definition: dblib.c:5812
void dbrecftos(char *filename)
Record to a file all SQL commands sent to the server.
Definition: dblib.c:6435
DBINT dbaltlen(DBPROCESS *dbproc, int computeid, int column)
Get size of data in compute column.
Definition: dblib.c:6809
RETCODE dbmnymul(DBPROCESS *dbproc, DBMONEY *m1, DBMONEY *m2, DBMONEY *prod)
Multiply two DBMONEY values.
Definition: dblib.c:4903
RETCODE dbsetdefcharset(char *charset)
Set the default character set.
Definition: dblib.c:6524
void dbsetavail(DBPROCESS *dbproc)
Mark a DBPROCESS as &quot;available&quot;.
Definition: dblib.c:6948
RETCODE dbsetlversion(LOGINREC *login, BYTE version)
Set TDS version for future connections.
Definition: dblib.c:876
int dbnumcols(DBPROCESS *dbproc)
Return number of regular columns in a result set.
Definition: dblib.c:1743
RETCODE dbmnydown(DBPROCESS *dbproc, DBMONEY *amount, int divisor, int *remainder)
Divide a DBMONEY value by a positive integer.
Definition: dblib.c:5135
DBPROCESS * tdsdbopen(LOGINREC *login, const char *server, int msdblib)
Form a connection with the server.
Definition: dblib.c:1088
DBINT dbvarylen(DBPROCESS *dbproc, int column)
Determine whether a column can vary in size.
Definition: dblib.c:2978
RETCODE dbwritetext(DBPROCESS *dbproc, char *objname, DBBINARY *textptr, DBTINYINT textptrlen, DBBINARY *timestamp, DBBOOL log, DBINT size, BYTE *text)
Send text or image data to the server.
Definition: dblib.c:6246
RETCODE bcp_colptr(DBPROCESS *dbproc, BYTE *colptr, int table_column)
Override bcp_bind() by pointing to a different host variable.
Definition: bcp.c:697
int dbnumrets(DBPROCESS *dbproc)
Get count of output parameters filled by a stored procedure.
Definition: dblib.c:4398
RETCODE dbmorecmds(DBPROCESS *dbproc)
See if more commands are to be processed.
Definition: dblib.c:5886
RETCODE dbmnyzero(DBPROCESS *dbproc, DBMONEY *dest)
Set a DBMONEY value to zero.
Definition: dblib.c:5013
RETCODE dbanullbind(DBPROCESS *dbproc, int computeid, int column, DBINT *indicator)
Tie a null-indicator to a compute result column.
Definition: dblib.c:2645
RETCODE dbsqlexec(DBPROCESS *dbproc)
send the SQL command to the server and wait for an answer.
Definition: dblib.c:1294
BYTE * dbgetuserdata(DBPROCESS *dbproc)
Get address of user-allocated data from a DBPROCESS.
Definition: dblib.c:5625
DBBOOL dbwillconvert(int srctype, int desttype)
Test whether or not a datatype can be converted to another datatype.
Definition: dblib.c:2720
int dbgetmaxprocs(void)
get maximum simultaneous connections db-lib will open to the server.
Definition: dblib.c:3871
int dbiordesc(DBPROCESS *dbproc)
Get file descriptor of the socket used by a DBPROCESS to read data coming from the server...
Definition: dblib.c:6904
RETCODE dbsetlbool(LOGINREC *login, int value, int which)
Set a boolean value in a LOGINREC structure.
Definition: dblib.c:851
RETCODE dbregexec(DBPROCESS *dbproc, DBUSMALLINT options)
Execute a registered procedure.
Definition: dblib.c:6607
RETCODE dbsetmaxprocs(int maxprocs)
Set maximum simultaneous connections db-lib will open to the server.
Definition: dblib.c:3801
DBBINARY * dbtxtimestamp(DBPROCESS *dbproc, int column)
Get text timestamp for a column in the current row.
Definition: dblib.c:6187
Definition: sybdb.h:250
RETCODE dbrows(DBPROCESS *dbproc)
Indicate whether a query returned rows.
Definition: dblib.c:3731
RETCODE dbmnysub(DBPROCESS *dbproc, DBMONEY *m1, DBMONEY *m2, DBMONEY *difference)
Subtract two DBMONEY values.
Definition: dblib.c:4877
char * dbservcharset(DBPROCESS *dbproc)
Get syscharset name of the server character set.
Definition: dblib.c:6694
RETCODE dbresults(DBPROCESS *dbproc)
Set up query results.
Definition: dblib.c:1584
RETCODE dbnullbind(DBPROCESS *dbproc, int column, DBINT *indicator)
Tie a null-indicator to a regular result column.
Definition: dblib.c:2609
RETCODE dbsetrow(DBPROCESS *dbproc, DBINT row)
Make a buffered row &quot;current&quot; without fetching it into bound variables.
Definition: dblib.c:1910
void dbclrbuf(DBPROCESS *dbproc, DBINT n)
Clear n rows from the row buffer.
Definition: dblib.c:2696
RETCODE dbsetlname(LOGINREC *login, const char *value, int which)
Set the value of a string in a LOGINREC structure.
Definition: dblib.c:738
int dbtds(DBPROCESS *dbproc)
Get the TDS version in use for dbproc.
Definition: dblib.c:6469
Definition: sybdb.h:229
RETCODE dbdatecmp(DBPROCESS *dbproc, DBDATETIME *d1, DBDATETIME *d2)
Compare DBDATETIME values, similar to strcmp(3).
Definition: dblib.c:5467
RETCODE bcp_init(DBPROCESS *dbproc, const char *tblname, const char *hfile, const char *errfile, int direction)
Prepare for bulk copy operation on a table.
Definition: bcp.c:130
RETCODE dbsetnull(DBPROCESS *dbproc, int bindtype, int bindlen, BYTE *bindval)
Define substitution values to be used when binding null values.
Definition: dblib.c:1833
RETCODE dbmnyndigit(DBPROCESS *dbproc, DBMONEY *mnyptr, DBCHAR *digit, DBBOOL *zero)
Get the least significant digit of a DBMONEY value, represented as a character.
Definition: dblib.c:5083
BYTE * dbadata(DBPROCESS *dbproc, int computeid, int column)
Get address of compute column data.
Definition: dblib.c:4147
Definition: sybdb.h:296
int dbnumalts(DBPROCESS *dbproc, int computeid)
Get count of columns in a compute row.
Definition: dblib.c:4627
RETCODE dbgetrow(DBPROCESS *dbproc, DBINT row)
Read a row from the row buffer.
Definition: dblib.c:1800
RETCODE bcp_options(DBPROCESS *dbproc, int option, BYTE *value, int valuelen)
Set &quot;hints&quot; for uploading a file.
Definition: bcp.c:648
RETCODE dbmny4zero(DBPROCESS *dbproc, DBMONEY4 *dest)
Zero a DBMONEY4 value.
Definition: dblib.c:5268
char * dbcolname(DBPROCESS *dbproc, int column)
Return name of a regular result column.
Definition: dblib.c:1767
RETCODE dbmnyscale(DBPROCESS *dbproc, DBMONEY *amount, int multiplier, int addend)
Multiply a DBMONEY value by a positive integer, and add an amount.
Definition: dblib.c:4991
RETCODE dbmnyinc(DBPROCESS *dbproc, DBMONEY *amount)
Add $0.0001 to a DBMONEY value.
Definition: dblib.c:5157
RETCODE dbmnymaxneg(DBPROCESS *dbproc, DBMONEY *amount)
Get maximum negative DBMONEY value supported.
Definition: dblib.c:5057
char * dbchange(DBPROCESS *dbproc)
See if a command caused the current database to change.
Definition: dblib.c:6658
DBBINARY * dbtxptr(DBPROCESS *dbproc, int column)
Get text pointer for a column in the current row.
Definition: dblib.c:6213
const char * dbprtype(int token)
Print a token value&#39;s name to a buffer.
Definition: dblib.c:6101
RETCODE bcp_writefmt(DBPROCESS *dbproc, char *filename)
Write a format definition file.
Definition: bcp.c:2923
RETCODE dbrpcinit(DBPROCESS *dbproc, char *rpcname, DBSMALLINT options)
Initialize a remote procedure call.
Definition: rpc.c:79
DBINT dbcurrow(DBPROCESS *dbproc)
Get number of the row currently being read.
Definition: dblib.c:5835
Definition: dblib.h:141
const char * dbversion()
See which version of db-lib is in use.
Definition: dblib.c:6509
void dbfreebuf(DBPROCESS *dbproc)
Erase the command buffer, in case DBNOAUTOFREE was set with dbsetopt().
Definition: dblib.c:5725
void dbexit()
Close server connections and free all related structures.
Definition: dblib.c:1435
EHANDLEFUNC dberrhandle(EHANDLEFUNC handler)
Set an error handler, for messages from db-lib.
Definition: dblib.c:4808
STATUS dbreadtext(DBPROCESS *dbproc, void *buf, DBINT bufsize)
Fetch part of a text or image value from the server.
Definition: dblib.c:6328
DBINT dblastrow(DBPROCESS *dbproc)
Get number of the last row in the row buffer.
Definition: dblib.c:6880
int dbgettime(void)
Get maximum seconds db-lib waits for a server response to query.
Definition: dblib.c:3919
RETCODE dbprrow(DBPROCESS *dbproc)
Print a result set to stdout.
Definition: dblib.c:3238
RETCODE dbsprhead(DBPROCESS *dbproc, char *buffer, DBINT buf_len)
Print result set headings to a buffer.
Definition: dblib.c:3592
RETCODE dbfcmd(DBPROCESS *dbproc, const char *fmt,...)
printf-like way to form SQL to send to the server.
Definition: dblib.c:1198
RETCODE dbsprline(DBPROCESS *dbproc, char *buffer, DBINT buf_len, DBCHAR line_char)
Get formatted string for underlining dbsprhead() column names.
Definition: dblib.c:3533
RETCODE dbsetversion(DBINT version)
Specify a db-lib version level.
Definition: dblib.c:5643
RETCODE dbsetdeflang(char *language)
Set the default character set for an application.
Definition: dblib.c:3761
RETCODE dbreglist(DBPROCESS *dbproc)
Get names of Open Server registered procedures.
Definition: dblib.c:6562
RETCODE dbsetllong(LOGINREC *login, long value, int which)
Set an integer value in a LOGINREC structure.
Definition: dblib.c:792
Definition: sybdb.h:261
RETCODE dbmoretext(DBPROCESS *dbproc, DBINT size, BYTE *text)
Send chunk of a text/image value to the server.
Definition: dblib.c:6397
int dbgetpacket(DBPROCESS *dbproc)
Get TDS packet size for the connection.
Definition: dblib.c:3777
RETCODE bcp_collen(DBPROCESS *dbproc, DBINT varlen, int table_column)
Set the length of a host variable to be written to a table.
Definition: bcp.c:309
LOGINREC * dblogin(void)
Allocate a LOGINREC structure.
Definition: dblib.c:688
RETCODE dbdatecrack(DBPROCESS *dbproc, DBDATEREC *di, DBDATETIME *datetime)
Break a DBDATETIME value into useful pieces.
Definition: dblib.c:5507
RETCODE bcp_sendrow(DBPROCESS *dbproc)
Write data in host variables to the table.
Definition: bcp.c:1815
RETCODE dbuse(DBPROCESS *dbproc, const char *name)
Change current database.
Definition: dblib.c:1322
RETCODE dbtablecolinfo(DBPROCESS *dbproc, DBINT column, DBCOL *pdbcol)
describe table column attributes with a single call (Freetds-only API function modelled on dbcolinfo)...
Definition: dblib.c:6118
RETCODE dbsetlogintime(int seconds)
Set maximum seconds db-lib waits for a server response to a login attempt.
Definition: dblib.c:3935
RETCODE dbrpwset(LOGINREC *login, char *srvname, char *password, int pwlen)
Add a remote password to the LOGINREC structure.
Definition: dblib.c:5564
int dbcolutype(DBPROCESS *dbproc, int column)
Get user-defined datatype of a regular result column.
Definition: dblib.c:2766
DBBOOL bcp_getl(LOGINREC *login)
See if BCP_SETL() was used to set the LOGINREC for BCP work.
Definition: bcp.c:734
RETCODE dbpoll(DBPROCESS *dbproc, long milliseconds, DBPROCESS **ready_dbproc, int *return_reason)
See if a server response has arrived.
Definition: dblib.c:6844
RETCODE dbclropt(DBPROCESS *dbproc, int option, char *param)
Reset an option.
Definition: dblib.c:5759
Definition: sybdb.h:244
RETCODE dbsqlok(DBPROCESS *dbproc)
Wait for results of a query from the server.
Definition: dblib.c:4524
DBINT dbdatlen(DBPROCESS *dbproc, int column)
Get size of current row&#39;s data in a regular result column.
Definition: dblib.c:3027
RETCODE bcp_colfmt(DBPROCESS *dbproc, int host_colnum, int host_type, int host_prefixlen, DBINT host_collen, const BYTE *host_term, int host_termlen, int table_colnum)
Specify the format of a datafile prior to writing to a table.
Definition: bcp.c:421
STATUS dbrowtype(DBPROCESS *dbproc)
Get returned row&#39;s type.
Definition: dblib.c:5852
RETCODE dbmny4sub(DBPROCESS *dbproc, DBMONEY4 *m1, DBMONEY4 *m2, DBMONEY4 *diff)
Subtract two DBMONEY4 values.
Definition: dblib.c:5324
Definition: sybdb.h:277
BYTE * dbdata(DBPROCESS *dbproc, int column)
Get address of data in a regular result column.
Definition: dblib.c:3055
RETCODE dbmnyadd(DBPROCESS *dbproc, DBMONEY *m1, DBMONEY *m2, DBMONEY *sum)
Add two DBMONEY values.
Definition: dblib.c:4850
RETCODE dbmnydec(DBPROCESS *dbproc, DBMONEY *amount)
Subtract $0.0001 from a DBMONEY value.
Definition: dblib.c:5186
RETCODE dbmny4copy(DBPROCESS *dbproc, DBMONEY4 *src, DBMONEY4 *dest)
Copy a DBMONEY4 value.
Definition: dblib.c:5441
RETCODE dbstrcpy(DBPROCESS *dbproc, int start, int numbytes, char *dest)
Get a copy of a chunk of the command buffer.
Definition: dblib.c:5995
RETCODE dbcolinfo(DBPROCESS *dbproc, CI_TYPE type, DBINT column, DBINT computeid, DBCOL *pdbcol)
Get a bunch of column attributes with a single call (Microsoft-compatibility feature).
Definition: dblib.c:2817
DBINT dbfirstrow(DBPROCESS *dbproc)
Get number of the first row in the row buffer.
Definition: dblib.c:6864
DBINT dbadlen(DBPROCESS *dbproc, int computeid, int column)
Get size of data in a compute column.
Definition: dblib.c:4007
RETCODE dbcanquery(DBPROCESS *dbproc)
Cancel the query currently being retrieved, discarding all pending rows.
Definition: dblib.c:5694
DBINT bcp_done(DBPROCESS *dbproc)
Conclude the transfer of data from program variables.
Definition: bcp.c:3018
int dbstrbuild(DBPROCESS *dbproc, char *charbuf, int bufsize, char *text, char *formats,...)
Build a printable string from text containing placeholders for variables.
Definition: dblib.c:6973
BYTE * dbretdata(DBPROCESS *dbproc, int retnum)
Get value of an output parameter filled by a stored procedure.
Definition: dblib.c:4460
RETCODE dbrpcsend(DBPROCESS *dbproc)
Execute the procedure and free associated memory.
Definition: rpc.c:272
RETCODE dbspr1row(DBPROCESS *dbproc, char *buffer, DBINT buf_len)
Print a regular result row to a buffer.
Definition: dblib.c:3153
int dbcurcmd(DBPROCESS *dbproc)
Get number of the row just returned.
Definition: dblib.c:5869
int dbnumcompute(DBPROCESS *dbproc)
Get count of COMPUTE clauses for a result set.
Definition: dblib.c:4660
RETCODE dbsettime(int seconds)
Set maximum seconds db-lib waits for a server response to query.
Definition: dblib.c:3892
RETCODE dbmny4add(DBPROCESS *dbproc, DBMONEY4 *m1, DBMONEY4 *m2, DBMONEY4 *sum)
Add two DBMONEY4 values.
Definition: dblib.c:5292
char * dbretname(DBPROCESS *dbproc, int retnum)
Get name of an output parameter filled by a stored procedure.
Definition: dblib.c:4430
Definition: sybdb.h:255
int dbmnycmp(DBPROCESS *dbproc, DBMONEY *m1, DBMONEY *m2)
Compare two DBMONEY values.
Definition: dblib.c:4955
DBINT dbconvert(DBPROCESS *dbproc, int srctype, const BYTE *src, DBINT srclen, int desttype, BYTE *dest, DBINT destlen)
Convert one datatype to another.
Definition: dblib.c:2133
int dbcoltype(DBPROCESS *dbproc, int column)
Get the datatype of a regular result set column.
Definition: dblib.c:2737
RETCODE dbreginit(DBPROCESS *dbproc, DBCHAR *procedure_name, DBSMALLINT namelen)
Ready execution of a registered procedure.
Definition: dblib.c:6542
RETCODE dbcmd(DBPROCESS *dbproc, const char *cmdstring)
Append SQL to the command buffer.
Definition: dblib.c:1238
int dbmny4cmp(DBPROCESS *dbproc, DBMONEY4 *m1, DBMONEY4 *m2)
Compare two DBMONEY4 values.
Definition: dblib.c:5413
RETCODE dbmnycopy(DBPROCESS *dbproc, DBMONEY *src, DBMONEY *dest)
Copy a DBMONEY value.
Definition: dblib.c:5672
RETCODE dbsetopt(DBPROCESS *dbproc, int option, const char *char_param, int int_param)
Set db-lib or server option.
Definition: dblib.c:4203
RETCODE dbsqlsend(DBPROCESS *dbproc)
Transmit the command buffer to the server.
Definition: dblib.c:6714
RETCODE bcp_control(DBPROCESS *dbproc, int field, DBINT value)
Set BCP options for uploading a datafile.
Definition: bcp.c:574
Definition: bsqlodbc.c:94
DBINT dbcollen(DBPROCESS *dbproc, int column)
Get size of a regular result column.
Definition: dblib.c:2953
const char * dbmonthname(DBPROCESS *dbproc, char *language, int monthnum, DBBOOL shortform)
Get name of a month, in some human language.
Definition: dblib.c:6629
RETCODE dbmnydivide(DBPROCESS *dbproc, DBMONEY *m1, DBMONEY *m2, DBMONEY *quotient)
Divide two DBMONEY values.
Definition: dblib.c:4929
RETCODE dbmnymaxpos(DBPROCESS *dbproc, DBMONEY *amount)
Get maximum positive DBMONEY value supported.
Definition: dblib.c:5035
RETCODE dbcancel(DBPROCESS *dbproc)
Cancel the current command batch.
Definition: dblib.c:3089
int dbiowdesc(DBPROCESS *dbproc)
Get file descriptor of the socket used by a DBPROCESS to write data coming to the server...
Definition: dblib.c:6920
void dbrpwclr(LOGINREC *login)
Clear remote passwords from the LOGINREC structure.
Definition: dblib.c:5545
RETCODE dbnextrow(DBPROCESS *dbproc)
Read result row into the row buffer and into any bound host variables.
Definition: dblib.c:1939
DBBOOL dbhasretstat(DBPROCESS *dbproc)
Determine if query generated a return status number.
Definition: dblib.c:4356
int dbaltop(DBPROCESS *dbproc, int computeid, int column)
Get aggregation operator for a compute column.
Definition: dblib.c:4176
DBINT dbconvert_ps(DBPROCESS *dbproc, int srctype, BYTE *src, DBINT srclen, int desttype, BYTE *dest, DBINT destlen, DBTYPEINFO *typeinfo)
cf.
Definition: dblib.c:2457
RETCODE dbsafestr(DBPROCESS *dbproc, const char *src, DBINT srclen, char *dest, DBINT destlen, int quotetype)
safely quotes character values in SQL text.
Definition: dblib.c:6040
RETCODE bcp_columns(DBPROCESS *dbproc, int host_colcount)
Indicate how many columns are to be found in the datafile.
Definition: bcp.c:344
Definition: sybdb.h:283
RETCODE dbcmdrow(DBPROCESS *dbproc)
See if the current command can return rows.
Definition: dblib.c:3956
void dbclose(DBPROCESS *dbproc)
Close a connection to the server and free associated resources.
Definition: dblib.c:1366
RETCODE dbaltbind(DBPROCESS *dbproc, int computeid, int column, int vartype, DBINT varlen, BYTE *varaddr)
Bind a compute column to a program variable.
Definition: dblib.c:4102
Definition: sybdb.h:235
int dbspid(DBPROCESS *dbproc)
Get server process ID for a DBPROCESS.
Definition: dblib.c:5580
DBTYPEINFO * dbcoltypeinfo(DBPROCESS *dbproc, int column)
Get precision and scale information for a regular result column.
Definition: dblib.c:2788
RETCODE dbmnyinit(DBPROCESS *dbproc, DBMONEY *amount, int trim, DBBOOL *negative)
Prepare a DBMONEY value for use with dbmnyndigit().
Definition: dblib.c:5109