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