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