FreeTDS API
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
tds.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, 2005 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 
21 #ifndef _tds_h_
22 #define _tds_h_
23 
24 #include <stdarg.h>
25 #include <stdio.h>
26 #include <time.h>
27 
28 #ifdef HAVE_STDDEF_H
29 #include <stddef.h>
30 #endif
31 
32 #if HAVE_NETDB_H
33 #include <netdb.h>
34 #endif /* HAVE_NETDB_H */
35 
36 #if HAVE_NETINET_IN_H
37 #include <netinet/in.h>
38 #endif /* HAVE_NET_INET_IN_H */
39 #if HAVE_ARPA_INET_H
40 #include <arpa/inet.h>
41 #endif /* HAVE_ARPA_INET_H */
42 
43 /* forward declaration */
44 typedef struct tdsiconvinfo TDSICONV;
45 typedef struct tds_connection TDSCONNECTION;
46 typedef struct tds_socket TDSSOCKET;
47 typedef struct tds_column TDSCOLUMN;
48 typedef struct tds_bcpinfo TDSBCPINFO;
49 
50 #include <freetds/version.h>
51 #include "tds_sysdep_public.h"
52 #include <freetds/sysdep_private.h>
53 #include <freetds/thread.h>
54 #include <freetds/bool.h>
55 #include "replacements.h"
56 
57 #include <freetds/pushvis.h>
58 
59 #ifdef __cplusplus
60 extern "C"
61 {
62 #if 0
63 }
64 #endif
65 #endif
66 
73 {
74  const char *freetds_version; /* release version of FreeTDS */
75  const char *sysconfdir; /* location of freetds.conf */
76  const char *last_update; /* latest software_version date among the modules */
77  int msdblib; /* for MS style dblib */
78  int sybase_compat; /* enable increased Open Client binary compatibility */
79  int threadsafe; /* compile for thread safety default=no */
80  int libiconv; /* search for libiconv in DIR/include and DIR/lib */
81  const char *tdsver; /* TDS protocol version (4.2/4.6/5.0/7.0/7.1) 5.0 */
82  int iodbc; /* build odbc driver against iODBC in DIR */
83  int unixodbc; /* build odbc driver against unixODBC in DIR */
84  int openssl; /* build against OpenSSL */
85  int gnutls; /* build against OpenSSL */
87 
93 typedef struct tds_dstr {
94  size_t dstr_size;
95  char dstr_s[1];
96 } *DSTR;
97 
113 /*
114  * All references to data that touch the wire should use the following typedefs.
115  *
116  * If you have problems on 64-bit machines and the code is
117  * using a native datatype, please change it to use
118  * these. (In the TDS layer only, the API layers have their
119  * own typedefs which equate to these).
120  */
121 typedef char TDS_CHAR; /* 8-bit char */
122 typedef unsigned char TDS_UCHAR; /* 8-bit uchar */
123 typedef unsigned char TDS_TINYINT; /* 8-bit unsigned */
124 typedef tds_sysdep_int16_type TDS_SMALLINT; /* 16-bit int */
125 typedef unsigned tds_sysdep_int16_type TDS_USMALLINT; /* 16-bit unsigned */
126 typedef tds_sysdep_int32_type TDS_INT; /* 32-bit int */
127 typedef unsigned tds_sysdep_int32_type TDS_UINT; /* 32-bit unsigned */
128 typedef tds_sysdep_real32_type TDS_REAL; /* 32-bit real */
129 typedef tds_sysdep_real64_type TDS_FLOAT; /* 64-bit real */
130 typedef tds_sysdep_int64_type TDS_INT8; /* 64-bit integer */
131 typedef unsigned tds_sysdep_int64_type TDS_UINT8; /* 64-bit unsigned */
132 typedef tds_sysdep_intptr_type TDS_INTPTR;
133 typedef unsigned tds_sysdep_intptr_type TDS_UINTPTR;
134 
135 #include <freetds/proto.h>
136 
141 typedef struct
142 {
143  TDS_UINT8 time;
144  TDS_INT date;
145  TDS_SMALLINT offset;
146  TDS_USMALLINT time_prec:3;
147  TDS_USMALLINT _res:10;
148  TDS_USMALLINT has_time:1;
149  TDS_USMALLINT has_date:1;
150  TDS_USMALLINT has_offset:1;
152 
154 typedef struct tdsdaterec
155 {
156  TDS_INT year;
157  TDS_INT quarter;
158  TDS_INT month;
159  TDS_INT day;
160  TDS_INT dayofyear;
161  TDS_INT weekday;
162  TDS_INT hour;
163  TDS_INT minute;
164  TDS_INT second;
165  TDS_INT decimicrosecond;
166 } TDSDATEREC;
167 
173 extern const int tds_numeric_bytes_per_prec[];
174 
175 typedef int TDSRET;
176 #define TDS_NO_MORE_RESULTS ((TDSRET)1)
177 #define TDS_SUCCESS ((TDSRET)0)
178 #define TDS_FAIL ((TDSRET)-1)
179 #define TDS_CANCELLED ((TDSRET)-2)
180 #define TDS_FAILED(rc) ((rc)<0)
181 #define TDS_SUCCEED(rc) ((rc)>=0)
182 
183 #define TDS_INT_CONTINUE 1
184 #define TDS_INT_CANCEL 2
185 #define TDS_INT_TIMEOUT 3
186 
187 
188 #define TDS_NO_COUNT -1
189 
190 #define TDS_ROW_RESULT 4040
191 #define TDS_PARAM_RESULT 4042
192 #define TDS_STATUS_RESULT 4043
193 #define TDS_MSG_RESULT 4044
194 #define TDS_COMPUTE_RESULT 4045
195 #define TDS_CMD_DONE 4046
196 #define TDS_CMD_SUCCEED 4047
197 #define TDS_CMD_FAIL 4048
198 #define TDS_ROWFMT_RESULT 4049
199 #define TDS_COMPUTEFMT_RESULT 4050
200 #define TDS_DESCRIBE_RESULT 4051
201 #define TDS_DONE_RESULT 4052
202 #define TDS_DONEPROC_RESULT 4053
203 #define TDS_DONEINPROC_RESULT 4054
204 #define TDS_OTHERS_RESULT 4055
205 
206 enum tds_token_results
207 {
208  TDS_TOKEN_RES_OTHERS,
209  TDS_TOKEN_RES_ROWFMT,
210  TDS_TOKEN_RES_COMPUTEFMT,
211  TDS_TOKEN_RES_PARAMFMT,
212  TDS_TOKEN_RES_DONE,
213  TDS_TOKEN_RES_ROW,
214  TDS_TOKEN_RES_COMPUTE,
215  TDS_TOKEN_RES_PROC,
216  TDS_TOKEN_RES_MSG,
217  TDS_TOKEN_RES_ENV,
218 };
219 
220 #define TDS_TOKEN_FLAG(flag) TDS_RETURN_##flag = (1 << (TDS_TOKEN_RES_##flag*2)), TDS_STOPAT_##flag = (2 << (TDS_TOKEN_RES_##flag*2))
221 
222 enum tds_token_flags
223 {
224  TDS_HANDLE_ALL = 0,
225  TDS_TOKEN_FLAG(OTHERS),
226  TDS_TOKEN_FLAG(ROWFMT),
227  TDS_TOKEN_FLAG(COMPUTEFMT),
228  TDS_TOKEN_FLAG(PARAMFMT),
229  TDS_TOKEN_FLAG(DONE),
230  TDS_TOKEN_FLAG(ROW),
231  TDS_TOKEN_FLAG(COMPUTE),
232  TDS_TOKEN_FLAG(PROC),
233  TDS_TOKEN_FLAG(MSG),
234  TDS_TOKEN_FLAG(ENV),
235  TDS_TOKEN_RESULTS = TDS_RETURN_ROWFMT|TDS_RETURN_COMPUTEFMT|TDS_RETURN_DONE|TDS_STOPAT_ROW|TDS_STOPAT_COMPUTE|TDS_RETURN_PROC,
236  TDS_TOKEN_TRAILING = TDS_STOPAT_ROWFMT|TDS_STOPAT_COMPUTEFMT|TDS_STOPAT_ROW|TDS_STOPAT_COMPUTE|TDS_STOPAT_MSG|TDS_STOPAT_OTHERS
237 };
238 
243 {
246  , TDS_DONE_ERROR = 0x02
247  , TDS_DONE_INXACT = 0x04
248  , TDS_DONE_PROC = 0x08
249  , TDS_DONE_COUNT = 0x10
251  , TDS_DONE_EVENT = 0x40 /* part of an event notification. */
252  , TDS_DONE_SRVERROR = 0x100
254  /* after the above flags, a TDS_DONE packet has a field describing the state of the transaction */
255  , TDS_DONE_NO_TRAN = 0 /* No transaction in effect */
256  , TDS_DONE_TRAN_SUCCEED = 1 /* Transaction completed successfully */
257  , TDS_DONE_TRAN_PROGRESS= 2 /* Transaction in progress */
258  , TDS_DONE_STMT_ABORT = 3 /* A statement aborted */
259  , TDS_DONE_TRAN_ABORT = 4 /* Transaction aborted */
260 };
261 
262 
263 /*
264  * TDSERRNO is emitted by libtds to the client library's error handler
265  * (which may in turn call the client's error handler).
266  * These match the db-lib msgno, because the same values have the same meaning
267  * in db-lib and ODBC. ct-lib maps them to ct-lib numbers (todo).
268  */
269 typedef enum { TDSEOK = TDS_SUCCESS,
270  TDSEVERDOWN = 100,
271  TDSEICONVIU = 2400,
272  TDSEICONVAVAIL = 2401,
273  TDSEICONVO = 2402,
274  TDSEICONVI = 2403,
275  TDSEICONV2BIG = 2404,
276  TDSEPORTINSTANCE = 2500,
277  TDSESYNC = 20001,
278  TDSEFCON = 20002,
279  TDSETIME = 20003,
280  TDSEREAD = 20004,
281  TDSEWRIT = 20006,
282  TDSESOCK = 20008,
283  TDSECONN = 20009,
284  TDSEMEM = 20010,
285  TDSEINTF = 20012, /* Server name not found in interface file */
286  TDSEUHST = 20013, /* Unknown host machine name. */
287  TDSEPWD = 20014,
288  TDSESEOF = 20017,
289  TDSERPND = 20019,
290  TDSEBTOK = 20020,
291  TDSEOOB = 20022,
292  TDSECLOS = 20056,
293  TDSEUSCT = 20058,
294  TDSEUTDS = 20146,
295  TDSEEUNR = 20185,
296  TDSECAP = 20203,
297  TDSENEG = 20210,
298  TDSEUMSG = 20212,
299  TDSECAPTYP = 20213,
300  TDSECONF = 20214,
301  TDSEBPROBADTYP = 20250,
302  TDSECLOSEIN = 20292
303 } TDSERRNO;
304 
305 
306 enum {
307  TDS_CUR_ISTAT_UNUSED = 0x00,
308  TDS_CUR_ISTAT_DECLARED = 0x01,
309  TDS_CUR_ISTAT_OPEN = 0x02,
310  TDS_CUR_ISTAT_CLOSED = 0x04,
311  TDS_CUR_ISTAT_RDONLY = 0x08,
312  TDS_CUR_ISTAT_UPDATABLE = 0x10,
313  TDS_CUR_ISTAT_ROWCNT = 0x20,
314  TDS_CUR_ISTAT_DEALLOC = 0x40
315 };
316 
317 /* string types */
318 #define TDS_NULLTERM -9
319 
320 
321 typedef union tds_option_arg
322 {
323  TDS_TINYINT ti;
324  TDS_INT i;
325  TDS_CHAR *c;
327 
328 
329 typedef enum tds_encryption_level {
330  TDS_ENCRYPTION_OFF, TDS_ENCRYPTION_REQUEST, TDS_ENCRYPTION_REQUIRE
331 } TDS_ENCRYPTION_LEVEL;
332 
333 #define TDS_ZERO_FREE(x) do {free((x)); (x) = NULL;} while(0)
334 #define TDS_VECTOR_SIZE(x) (sizeof(x)/sizeof(x[0]))
335 #ifdef offsetof
336 #define TDS_OFFSET(str, field) offsetof(str, field)
337 #else
338 #define TDS_OFFSET(str, field) (((char*)&((str*)0)->field)-((char*)0))
339 #endif
340 
341 #if defined(__GNUC__) && __GNUC__ >= 3
342 # define TDS_LIKELY(x) __builtin_expect(!!(x), 1)
343 # define TDS_UNLIKELY(x) __builtin_expect(!!(x), 0)
344 #else
345 # define TDS_LIKELY(x) (x)
346 # define TDS_UNLIKELY(x) (x)
347 #endif
348 
349 #if ENABLE_EXTRA_CHECKS
350 # if defined(__GNUC__) && __GNUC__ >= 2
351 # define TDS_COMPILE_CHECK(name,check) \
352  extern int name[(check)?1:-1] __attribute__ ((unused))
353 # else
354 # define TDS_COMPILE_CHECK(name,check) \
355  extern int name[(check)?1:-1]
356 # endif
357 # define TDS_EXTRA_CHECK(stmt) stmt
358 #else
359 # define TDS_COMPILE_CHECK(name,check) \
360  extern int disabled_check_##name
361 # define TDS_EXTRA_CHECK(stmt)
362 #endif
363 
364 #if ENABLE_EXTRA_CHECKS && defined(__GNUC__) && __GNUC__ >= 4
365 #define TDS_WUR __attribute__ ((__warn_unused_result__))
366 #else
367 #define TDS_WUR
368 #endif
369 
370 /*
371  * TODO use system macros for optimization
372  * See mcrypt for reference and linux kernel source for optimization
373  * check if unaligned access and use fast write/read when implemented
374  */
375 #define TDS_BYTE_SWAP16(value) \
376  (((((unsigned short)value)<<8) & 0xFF00) | \
377  ((((unsigned short)value)>>8) & 0x00FF))
378 
379 #define TDS_BYTE_SWAP32(value) \
380  (((((unsigned long)value)<<24) & 0xFF000000) | \
381  ((((unsigned long)value)<< 8) & 0x00FF0000) | \
382  ((((unsigned long)value)>> 8) & 0x0000FF00) | \
383  ((((unsigned long)value)>>24) & 0x000000FF))
384 
385 #define is_end_token(x) (x==TDS_DONE_TOKEN || \
386  x==TDS_DONEPROC_TOKEN || \
387  x==TDS_DONEINPROC_TOKEN)
388 
389 enum {
390  TDS_TYPEFLAG_INVALID = 0,
391  TDS_TYPEFLAG_NULLABLE = 1,
392  TDS_TYPEFLAG_FIXED = 2,
393  TDS_TYPEFLAG_VARIABLE = 4,
394  TDS_TYPEFLAG_COLLATE = 8,
395  TDS_TYPEFLAG_ASCII = 16,
396  TDS_TYPEFLAG_UNICODE = 32,
397  TDS_TYPEFLAG_NUMERIC = 64,
398 };
399 
400 extern const unsigned char tds_type_flags_ms[256];
401 #if 0
402 extern const unsigned char tds_type_flags_syb[256];
403 extern const char *const tds_type_names[256];
404 #endif
405 
406 #define is_fixed_type(x) ((tds_type_flags_ms[x] & TDS_TYPEFLAG_FIXED) != 0)
407 #define is_nullable_type(x) ((tds_type_flags_ms[x] & TDS_TYPEFLAG_NULLABLE) != 0)
408 #define is_variable_type(x) ((tds_type_flags_ms[x] & TDS_TYPEFLAG_VARIABLE) != 0)
409 
410 
411 #define is_blob_type(x) ((x)==SYBTEXT || (x)==SYBIMAGE || (x)==SYBNTEXT)
412 #define is_blob_col(x) ((x)->column_varint_size > 2)
413 /* large type means it has a two byte size field */
414 /* define is_large_type(x) (x>128) */
415 #define is_numeric_type(x) ((x)==SYBNUMERIC || (x)==SYBDECIMAL)
416 
417 #define is_datetime_type(x) ((x)==SYBDATETIME4 || (x)==SYBDATETIME || ((x)>=SYBMSDATETIME2 && (x)<=SYBMSDATETIMEOFFSET) \
418  || (x) == SYBDATE || (x) == SYBTIME)
419 #define is_unicode_type(x) ((tds_type_flags_ms[x] & TDS_TYPEFLAG_UNICODE) != 0)
420 #define is_collate_type(x) ((tds_type_flags_ms[x] & TDS_TYPEFLAG_COLLATE) != 0)
421 #define is_ascii_type(x) ((tds_type_flags_ms[x] & TDS_TYPEFLAG_ASCII) != 0)
422 #define is_char_type(x) ((tds_type_flags_ms[x] & (TDS_TYPEFLAG_ASCII|TDS_TYPEFLAG_UNICODE)) != 0)
423 #define is_similar_type(x, y) (is_char_type(x) && is_char_type(y))
424 
425 
426 #define TDS_MAX_CAPABILITY 32
427 #define MAXPRECISION 77
428 #define TDS_MAX_CONN 4096
429 #define TDS_MAX_DYNID_LEN 30
430 
431 /* defaults to use if no others are found */
432 #define TDS_DEF_SERVER "SYBASE"
433 #define TDS_DEF_BLKSZ 512
434 #define TDS_DEF_CHARSET "iso_1"
435 #define TDS_DEF_LANG "us_english"
436 #if TDS42
437 #define TDS_DEFAULT_VERSION 0x402
438 #define TDS_DEF_PORT 1433
439 #elif TDS46
440 #define TDS_DEFAULT_VERSION 0x406
441 #define TDS_DEF_PORT 4000
442 #elif TDS70
443 #define TDS_DEFAULT_VERSION 0x700
444 #define TDS_DEF_PORT 1433
445 #elif TDS71
446 #define TDS_DEFAULT_VERSION 0x701
447 #define TDS_DEF_PORT 1433
448 #elif TDS72
449 #define TDS_DEFAULT_VERSION 0x702
450 #define TDS_DEF_PORT 1433
451 #elif TDS73
452 #define TDS_DEFAULT_VERSION 0x703
453 #define TDS_DEF_PORT 1433
454 #elif TDS74
455 #define TDS_DEFAULT_VERSION 0x704
456 #define TDS_DEF_PORT 1433
457 #else
458 #define TDS_DEFAULT_VERSION 0x500
459 #define TDS_DEF_PORT 4000
460 #endif
461 
462 /* normalized strings from freetds.conf file */
463 #define TDS_STR_VERSION "tds version"
464 #define TDS_STR_BLKSZ "initial block size"
465 #define TDS_STR_SWAPDT "swap broken dates"
466 #define TDS_STR_DUMPFILE "dump file"
467 #define TDS_STR_DEBUGLVL "debug level"
468 #define TDS_STR_DEBUGFLAGS "debug flags"
469 #define TDS_STR_TIMEOUT "timeout"
470 #define TDS_STR_QUERY_TIMEOUT "query timeout"
471 #define TDS_STR_CONNTIMEOUT "connect timeout"
472 #define TDS_STR_HOSTNAME "hostname"
473 #define TDS_STR_HOST "host"
474 #define TDS_STR_PORT "port"
475 #define TDS_STR_TEXTSZ "text size"
476 /* for big endian hosts */
477 #define TDS_STR_EMUL_LE "emulate little endian"
478 #define TDS_STR_CHARSET "charset"
479 #define TDS_STR_CLCHARSET "client charset"
480 #define TDS_STR_USE_UTF_16 "use utf-16"
481 #define TDS_STR_LANGUAGE "language"
482 #define TDS_STR_APPENDMODE "dump file append"
483 #define TDS_STR_DATEFMT "date format"
484 #define TDS_STR_INSTANCE "instance"
485 #define TDS_STR_ASA_DATABASE "asa database"
486 #define TDS_STR_DATABASE "database"
487 #define TDS_STR_ENCRYPTION "encryption"
488 #define TDS_STR_USENTLMV2 "use ntlmv2"
489 #define TDS_STR_USELANMAN "use lanman"
490 /* conf values */
491 #define TDS_STR_ENCRYPTION_OFF "off"
492 #define TDS_STR_ENCRYPTION_REQUEST "request"
493 #define TDS_STR_ENCRYPTION_REQUIRE "require"
494 /* Defines to enable optional GSSAPI delegation */
495 #define TDS_GSSAPI_DELEGATION "enable gssapi delegation"
496 /* Kerberos realm name */
497 #define TDS_STR_REALM "realm"
498 /* Kerberos SPN */
499 #define TDS_STR_SPN "spn"
500 /* CA file */
501 #define TDS_STR_CAFILE "ca file"
502 /* CRL file */
503 #define TDS_STR_CRLFILE "crl file"
504 /* check SSL hostname */
505 #define TDS_STR_CHECKSSLHOSTNAME "check certificate hostname"
506 /* database filename to attach on login (MSSQL) */
507 #define TDS_STR_DBFILENAME "database filename"
508 
509 
510 /* TODO do a better check for alignment than this */
511 typedef union
512 {
513  void *p;
514  int i;
516 
517 #define TDS_ALIGN_SIZE sizeof(tds_align_struct)
518 
519 typedef struct tds_capability_type
520 {
521  unsigned char type;
522  unsigned char len; /* always sizeof(values) */
523  unsigned char values[TDS_MAX_CAPABILITY/2-2];
525 
526 typedef struct tds_capabilities
527 {
528  TDS_CAPABILITY_TYPE types[2];
530 
531 #define TDS_MAX_LOGIN_STR_SZ 128
532 typedef struct tds_login
533 {
535  int port;
536  TDS_USMALLINT tds_version;
537  int block_size;
538  DSTR language; /* e.g. us-english */
540  TDS_INT connect_timeout;
541  DSTR client_host_name;
542  DSTR server_host_name;
548  DSTR app_name;
553  DSTR library; /* Ct-Library, DB-Library, TDS-Library or ODBC */
554  TDS_TINYINT encryption_level;
555 
556  TDS_INT query_timeout;
557  TDS_CAPABILITIES capabilities;
558  DSTR client_charset;
559  DSTR database;
560 
561  struct addrinfo *ip_addrs;
562  struct addrinfo *connected_addr; /* ip of connected server */
563  DSTR instance_name;
564  DSTR dump_file;
565  int debug_flags;
566  int text_size;
567 
568  unsigned char option_flag2;
569 
570  unsigned int bulk_copy:1;
571  unsigned int suppress_language:1;
572  unsigned int emul_little_endian:1;
573  unsigned int gssapi_use_delegation:1;
574  unsigned int use_ntlmv2:1;
575  unsigned int use_lanman:1;
576  unsigned int mars:1;
577  unsigned int use_utf16:1;
578  unsigned int use_new_password:1;
579  unsigned int valid_configuration:1;
580  unsigned int check_ssl_hostname:1;
581 } TDSLOGIN;
582 
583 typedef struct tds_headers
584 {
585  const char *qn_options;
586  const char *qn_msgtext;
587  TDS_INT qn_timeout;
588  /* TDS 7.4+: trace activity ID char[20] */
589 } TDSHEADERS;
590 
591 typedef struct tds_locale
592 {
593  char *language;
594  char *server_charset;
595  char *date_fmt;
596 } TDSLOCALE;
597 
602 typedef struct tds_blob
603 {
604  TDS_CHAR *textvalue;
605  TDS_CHAR textptr[16];
606  TDS_CHAR timestamp[8];
607  unsigned char valid_ptr;
608 } TDSBLOB;
609 
613 typedef struct tds_variant
614 {
615  /* this MUST have same position and place of textvalue in tds_blob */
616  TDS_CHAR *data;
617  TDS_INT size;
618  TDS_INT data_len;
619  TDS_UCHAR type;
620  TDS_UCHAR collation[5];
621 } TDSVARIANT;
622 
627 typedef struct tds_encoding
628 {
629  const char *name;
630  unsigned char min_bytes_per_char;
631  unsigned char max_bytes_per_char;
632  unsigned char canonic;
633 } TDS_ENCODING;
634 
635 typedef struct tds_bcpcoldata
636 {
637  TDS_UCHAR *data;
638  TDS_INT datalen;
639  TDS_INT is_null;
640 } BCPCOLDATA;
641 
642 
643 typedef TDSRET tds_func_get_info(TDSSOCKET *tds, TDSCOLUMN *col);
644 typedef TDSRET tds_func_get_data(TDSSOCKET *tds, TDSCOLUMN *col);
645 typedef TDS_INT tds_func_row_len(TDSCOLUMN *col);
646 typedef TDSRET tds_func_put_info(TDSSOCKET *tds, TDSCOLUMN *col);
647 typedef TDSRET tds_func_put_data(TDSSOCKET *tds, TDSCOLUMN *col, int bcp7);
648 typedef int tds_func_check(const TDSCOLUMN *col);
649 
650 typedef struct tds_column_funcs
651 {
652  tds_func_get_info *get_info;
653  tds_func_get_data *get_data;
654  tds_func_row_len *row_len;
660  tds_func_put_info *put_info;
670  tds_func_put_data *put_data;
671 #if ENABLE_EXTRA_CHECKS
672 
686  tds_func_check *check;
687 #endif
688 #if 0
689  TDSRET (*convert)(TDSSOCKET *tds, TDSCOLUMN *col);
690 #endif
692 
697 {
698  const TDSCOLUMNFUNCS *funcs;
699  TDS_INT column_usertype;
700  TDS_INT column_flags;
701 
702  TDS_INT column_size;
704  TDS_TINYINT column_type;
709  TDS_TINYINT column_varint_size;
711  TDS_TINYINT column_prec;
712  TDS_TINYINT column_scale;
714  struct
715  {
716  TDS_TINYINT column_type;
717  TDS_INT column_size;
718  } on_server;
719 
722  DSTR table_name;
723  DSTR column_name;
724  DSTR table_column_name;
725 
726  unsigned char *column_data;
727  void (*column_data_free)(struct tds_column *column);
728  unsigned int column_nullable:1;
729  unsigned int column_writeable:1;
730  unsigned int column_identity:1;
731  unsigned int column_key:1;
732  unsigned int column_hidden:1;
733  unsigned int column_output:1;
734  unsigned int column_timestamp:1;
735  TDS_UCHAR column_collation[5];
736 
737  /* additional fields flags for compute results */
738  TDS_TINYINT column_operator;
739  TDS_SMALLINT column_operand;
740 
741  /* FIXME this is data related, not column */
744 
745  /* related to binding or info stored by client libraries */
746  /* FIXME find a best place to store these data, some are unused */
747  TDS_SMALLINT column_bindtype;
748  TDS_SMALLINT column_bindfmt;
749  TDS_UINT column_bindlen;
750  TDS_SMALLINT *column_nullbind;
751  TDS_CHAR *column_varaddr;
752  TDS_INT *column_lenbind;
753  TDS_INT column_textpos;
754  TDS_INT column_text_sqlgetdatapos;
755  TDS_CHAR column_text_sqlputdatainfo;
756 
757  BCPCOLDATA *bcp_column_data;
766  TDS_INT bcp_prefix_len;
767  TDS_INT bcp_term_len;
768  TDS_CHAR *bcp_terminator;
769 };
770 
771 
773 typedef struct tds_result_info
774 {
775  /* TODO those fields can became a struct */
776  TDSCOLUMN **columns;
777  TDS_USMALLINT num_cols;
778  TDS_USMALLINT computeid;
779  TDS_INT ref_count;
780  TDSSOCKET *attached_to;
781  unsigned char *current_row;
782  void (*row_free)(struct tds_result_info* result, unsigned char *row);
783  TDS_INT row_size;
784 
785  TDS_SMALLINT *bycolumns;
786  TDS_USMALLINT by_cols;
787  TDS_TINYINT rows_exist;
788  /* TODO remove ?? used only in dblib */
789  TDS_TINYINT more_results;
790 } TDSRESULTINFO;
791 
793 typedef enum tds_states
794 {
801 } TDS_STATE;
802 
803 typedef enum tds_operations
804 {
805  TDS_OP_NONE = 0,
806 
807  /* mssql operations */
808  TDS_OP_CURSOR = TDS_SP_CURSOR,
809  TDS_OP_CURSOROPEN = TDS_SP_CURSOROPEN,
810  TDS_OP_CURSORPREPARE = TDS_SP_CURSORPREPARE,
811  TDS_OP_CURSOREXECUTE = TDS_SP_CURSOREXECUTE,
812  TDS_OP_CURSORPREPEXEC = TDS_SP_CURSORPREPEXEC,
813  TDS_OP_CURSORUNPREPARE = TDS_SP_CURSORUNPREPARE,
814  TDS_OP_CURSORFETCH = TDS_SP_CURSORFETCH,
815  TDS_OP_CURSOROPTION = TDS_SP_CURSOROPTION,
816  TDS_OP_CURSORCLOSE = TDS_SP_CURSORCLOSE,
817  TDS_OP_EXECUTESQL = TDS_SP_EXECUTESQL,
818  TDS_OP_PREPARE = TDS_SP_PREPARE,
819  TDS_OP_EXECUTE = TDS_SP_EXECUTE,
820  TDS_OP_PREPEXEC = TDS_SP_PREPEXEC,
821  TDS_OP_PREPEXECRPC = TDS_SP_PREPEXECRPC,
822  TDS_OP_UNPREPARE = TDS_SP_UNPREPARE,
823 
824  /* sybase operations */
825  TDS_OP_DYN_DEALLOC = 100,
826 } TDS_OPERATION;
827 
828 #define TDS_DBG_LOGIN __FILE__, ((__LINE__ << 4) | 11)
829 #define TDS_DBG_HEADER __FILE__, ((__LINE__ << 4) | 10)
830 #define TDS_DBG_FUNC __FILE__, ((__LINE__ << 4) | 7)
831 #define TDS_DBG_INFO2 __FILE__, ((__LINE__ << 4) | 6)
832 #define TDS_DBG_INFO1 __FILE__, ((__LINE__ << 4) | 5)
833 #define TDS_DBG_NETWORK __FILE__, ((__LINE__ << 4) | 4)
834 #define TDS_DBG_WARN __FILE__, ((__LINE__ << 4) | 3)
835 #define TDS_DBG_ERROR __FILE__, ((__LINE__ << 4) | 2)
836 #define TDS_DBG_SEVERE __FILE__, ((__LINE__ << 4) | 1)
837 
838 #define TDS_DBGFLAG_FUNC 0x80
839 #define TDS_DBGFLAG_INFO2 0x40
840 #define TDS_DBGFLAG_INFO1 0x20
841 #define TDS_DBGFLAG_NETWORK 0x10
842 #define TDS_DBGFLAG_WARN 0x08
843 #define TDS_DBGFLAG_ERROR 0x04
844 #define TDS_DBGFLAG_SEVERE 0x02
845 #define TDS_DBGFLAG_ALL 0xfff
846 #define TDS_DBGFLAG_LOGIN 0x0800
847 #define TDS_DBGFLAG_HEADER 0x0400
848 #define TDS_DBGFLAG_PID 0x1000
849 #define TDS_DBGFLAG_TIME 0x2000
850 #define TDS_DBGFLAG_SOURCE 0x4000
851 #define TDS_DBGFLAG_THREAD 0x8000
852 
853 #if 0
854 
859 enum TDS_DBG_LOG_STATE
860 {
861  TDS_DBG_LOGIN = (1 << 0)
863  , TDS_DBG_API = (1 << 1)
864  , TDS_DBG_ASYNC = (1 << 2)
865  , TDS_DBG_DIAG = (1 << 3)
866  , TDS_DBG_error = (1 << 4)
867  /* TODO: ^^^^^ make upper case when old #defines (above) are removed */
868  /* Log FreeTDS runtime/logic error occurs. */
869  , TDS_DBG_PACKET = (1 << 5)
870  , TDS_DBG_LIBTDS = (1 << 6)
871  , TDS_DBG_CONFIG = (1 << 7)
872  , TDS_DBG_DEFAULT = 0xFE
873 };
874 #endif
875 
876 typedef struct tds_result_info TDSCOMPUTEINFO;
877 
879 
880 typedef struct tds_message
881 {
882  TDS_CHAR *server;
883  TDS_CHAR *message;
884  TDS_CHAR *proc_name;
885  TDS_CHAR *sql_state;
886  TDS_INT msgno;
887  TDS_INT line_number;
888  /* -1 .. 255 */
889  TDS_SMALLINT state;
890  TDS_TINYINT priv_msg_type;
891  TDS_TINYINT severity;
892  /* for library-generated errors */
893  int oserr;
894 } TDSMESSAGE;
895 
896 typedef struct tds_upd_col
897 {
898  struct tds_upd_col *next;
899  TDS_INT colnamelength;
900  char * columnname;
901 } TDSUPDCOL;
902 
903 typedef enum {
904  TDS_CURSOR_STATE_UNACTIONED = 0 /* initial value */
905  , TDS_CURSOR_STATE_REQUESTED = 1 /* called by ct_cursor */
906  , TDS_CURSOR_STATE_SENT = 2 /* sent to server */
907  , TDS_CURSOR_STATE_ACTIONED = 3 /* acknowledged by server */
908 } TDS_CURSOR_STATE;
909 
910 typedef struct tds_cursor_status
911 {
912  TDS_CURSOR_STATE declare;
913  TDS_CURSOR_STATE cursor_row;
914  TDS_CURSOR_STATE open;
915  TDS_CURSOR_STATE fetch;
916  TDS_CURSOR_STATE close;
917  TDS_CURSOR_STATE dealloc;
919 
920 typedef enum tds_cursor_operation
921 {
922  TDS_CURSOR_POSITION = 0,
923  TDS_CURSOR_UPDATE = 1,
924  TDS_CURSOR_DELETE = 2,
925  TDS_CURSOR_INSERT = 4
926 } TDS_CURSOR_OPERATION;
927 
928 typedef enum tds_cursor_fetch
929 {
930  TDS_CURSOR_FETCH_NEXT = 1,
931  TDS_CURSOR_FETCH_PREV,
932  TDS_CURSOR_FETCH_FIRST,
933  TDS_CURSOR_FETCH_LAST,
934  TDS_CURSOR_FETCH_ABSOLUTE,
935  TDS_CURSOR_FETCH_RELATIVE
936 } TDS_CURSOR_FETCH;
937 
941 typedef struct tds_cursor
942 {
943  struct tds_cursor *next;
944  TDS_INT ref_count;
945  char *cursor_name;
946  TDS_INT cursor_id;
947  TDS_TINYINT options;
951  TDS_TINYINT defer_close;
952  char *query;
953  /* TODO for updatable columns */
954  /* TDS_TINYINT number_upd_cols; */
955  /* TDSUPDCOL *cur_col_list; */
956  TDS_INT cursor_rows;
957  /* TDSPARAMINFO *params; */
959  TDS_USMALLINT srv_status;
960  TDSRESULTINFO *res_info;
961  TDS_INT type, concurrency;
962 } TDSCURSOR;
963 
967 typedef struct tds_env
968 {
969  int block_size;
970  char *language;
971  char *charset;
972  char *database;
973 } TDSENV;
974 
978 typedef struct tds_dynamic
979 {
980  struct tds_dynamic *next;
981  TDS_INT ref_count;
983  TDS_INT num_id;
989  char id[30];
995  TDS_TINYINT emulated;
999  TDS_TINYINT defer_close;
1000  /* int dyn_state; */ /* TODO use it */
1001  TDSPARAMINFO *res_info;
1009  TDSPARAMINFO *params;
1011  char *query;
1012 } TDSDYNAMIC;
1013 
1014 typedef enum {
1015  TDS_MULTIPLE_QUERY,
1016  TDS_MULTIPLE_EXECUTE,
1017  TDS_MULTIPLE_RPC
1018 } TDS_MULTIPLE_TYPE;
1019 
1020 typedef struct tds_multiple
1021 {
1022  TDS_MULTIPLE_TYPE type;
1023  unsigned int flags;
1024 } TDSMULTIPLE;
1025 
1026 /* forward declaration */
1027 typedef struct tds_context TDSCONTEXT;
1028 typedef int (*err_handler_t) (const TDSCONTEXT *, TDSSOCKET *, TDSMESSAGE *);
1029 
1031 {
1032  TDSLOCALE *locale;
1033  void *parent;
1034  /* handlers */
1035  int (*msg_handler) (const TDSCONTEXT *, TDSSOCKET *, TDSMESSAGE *);
1036  int (*err_handler) (const TDSCONTEXT *, TDSSOCKET *, TDSMESSAGE *);
1037  int (*int_handler) (void *);
1038 };
1039 
1040 enum TDS_ICONV_ENTRY
1041 {
1042  client2ucs2
1043  , client2server_chardata
1044  , iso2server_metadata
1045  , initial_char_conv_count /* keep last */
1046 };
1047 
1048 typedef struct tds_authentication
1049 {
1050  TDS_UCHAR *packet;
1051  int packet_len;
1052  TDSRET (*free)(TDSCONNECTION* conn, struct tds_authentication * auth);
1053  TDSRET (*handle_next)(TDSSOCKET * tds, struct tds_authentication * auth, size_t len);
1055 
1056 typedef struct tds_packet
1057 {
1058  struct tds_packet *next;
1059  short sid;
1060  unsigned len, capacity;
1061  unsigned char buf[1];
1062 } TDSPACKET;
1063 
1064 /* field related to connection */
1066 {
1067  TDS_USMALLINT tds_version;
1068  TDS_UINT product_version;
1069  char *product_name;
1070 
1071  TDS_SYS_SOCKET s;
1072  TDS_SYS_SOCKET s_signal, s_signaled;
1073  const TDSCONTEXT *tds_ctx;
1074 
1077 
1088 
1089  int char_conv_count;
1090  TDSICONV **char_convs;
1091 
1092  TDS_UCHAR collation[5];
1093  TDS_UCHAR tds72_transaction[8];
1094 
1095  TDS_CAPABILITIES capabilities;
1096  unsigned int emul_little_endian:1;
1097  unsigned int use_iconv:1;
1098  unsigned int tds71rev1:1;
1099  unsigned int pending_close:1;
1100 #if ENABLE_ODBC_MARS
1101  unsigned int mars:1;
1102 
1103  TDSSOCKET *in_net_tds;
1104  TDSPACKET *packets;
1105  TDSPACKET *recv_packet;
1106  TDSPACKET *send_packets;
1107  unsigned send_pos, recv_pos;
1108 
1109  tds_mutex list_mtx;
1110 #define BUSY_SOCKET ((TDSSOCKET*)(TDS_UINTPTR)1)
1111 #define TDSSOCKET_VALID(tds) (((TDS_UINTPTR)(tds)) > 1)
1112  struct tds_socket **sessions;
1113  unsigned num_sessions;
1114  unsigned num_cached_packets;
1115  TDSPACKET *packet_cache;
1116 #endif
1117 
1118  void *tls_session;
1119 #if defined(HAVE_GNUTLS)
1120  void *tls_credentials;
1121 #elif defined(HAVE_OPENSSL)
1122  void *tls_ctx;
1123 #else
1124  void *tls_dummy;
1125 #endif
1126  TDSAUTHENTICATION *authentication;
1127 };
1128 
1133 {
1134 #if ENABLE_ODBC_MARS
1135  TDSCONNECTION *conn;
1136 #else
1137  TDSCONNECTION conn[1];
1138 #endif
1139 
1145  unsigned char *in_buf;
1146 
1152  unsigned char *out_buf;
1153 
1158  unsigned int out_buf_max;
1159  unsigned in_pos;
1160  unsigned out_pos;
1161  unsigned in_len;
1162  unsigned char in_flag;
1163  unsigned char out_flag;
1165  void *parent;
1166 
1167 #if ENABLE_ODBC_MARS
1168  short sid;
1169  tds_condition packet_cond;
1170  TDS_UINT recv_seq;
1171  TDS_UINT send_seq;
1172  TDS_UINT recv_wnd;
1173  TDS_UINT send_wnd;
1174 #endif
1175  /* packet we received */
1176  TDSPACKET *recv_packet;
1179 
1186  TDSRESULTINFO *res_info;
1187  TDS_UINT num_comp_info;
1188  TDSCOMPUTEINFO **comp_info;
1189  TDSPARAMINFO *param_info;
1191  TDS_TINYINT bulk_query;
1192  TDS_TINYINT has_status;
1193  TDS_INT ret_status;
1194  TDS_STATE state;
1195  volatile
1196  unsigned char in_cancel;
1199  TDS_INT8 rows_affected;
1200  TDS_INT query_timeout;
1201 
1206  int spid;
1207  void (*env_chg_func) (TDSSOCKET * tds, int type, char *oldval, char *newval);
1208  TDS_OPERATION current_op;
1209 
1210  int option_value;
1211  tds_mutex wire_mtx;
1212 };
1213 
1214 #define tds_get_ctx(tds) ((tds)->conn->tds_ctx)
1215 #define tds_set_ctx(tds, val) do { ((tds)->conn->tds_ctx) = (val); } while(0)
1216 #define tds_get_parent(tds) ((tds)->parent)
1217 #define tds_set_parent(tds, val) do { ((tds)->parent) = (val); } while(0)
1218 #define tds_get_s(tds) ((tds)->conn->s)
1219 #define tds_set_s(tds, val) do { ((tds)->conn->s) = (val); } while(0)
1220 
1221 
1222 /* config.c */
1224 typedef void (*TDSCONFPARSE) (const char *option, const char *value, void *param);
1225 int tds_read_conf_section(FILE * in, const char *section, TDSCONFPARSE tds_conf_parse, void *parse_param);
1226 int tds_read_conf_file(TDSLOGIN * login, const char *server);
1227 void tds_parse_conf_section(const char *option, const char *value, void *param);
1228 TDSLOGIN *tds_read_config_info(TDSSOCKET * tds, TDSLOGIN * login, TDSLOCALE * locale);
1229 void tds_fix_login(TDSLOGIN* login);
1230 TDS_USMALLINT * tds_config_verstr(const char *tdsver, TDSLOGIN* login);
1231 struct addrinfo *tds_lookup_host(const char *servername);
1232 TDSRET tds_lookup_host_set(const char *servername, struct addrinfo **addr);
1233 const char *tds_addrinfo2str(struct addrinfo *addr, char *name, int namemax);
1234 
1235 TDSRET tds_set_interfaces_file_loc(const char *interfloc);
1236 extern const char STD_DATETIME_FMT[];
1237 int tds_config_boolean(const char *option, const char *value, TDSLOGIN * login);
1238 
1239 TDSLOCALE *tds_get_locale(void);
1240 TDSRET tds_alloc_row(TDSRESULTINFO * res_info);
1241 TDSRET tds_alloc_compute_row(TDSCOMPUTEINFO * res_info);
1242 BCPCOLDATA * tds_alloc_bcp_column_data(unsigned int column_size);
1243 TDSDYNAMIC *tds_lookup_dynamic(TDSCONNECTION * conn, const char *id);
1244 /*@observer@*/ const char *tds_prtype(int token);
1245 int tds_get_varint_size(TDSCONNECTION * conn, int datatype);
1246 int tds_get_cardinal_type(int datatype, int usertype);
1247 
1248 
1249 /* iconv.c */
1250 TDSRET tds_iconv_open(TDSCONNECTION * conn, const char *charset, int use_utf16);
1251 void tds_iconv_close(TDSCONNECTION * conn);
1252 void tds_srv_charset_changed(TDSCONNECTION * conn, const char *charset);
1253 void tds7_srv_charset_changed(TDSCONNECTION * conn, int sql_collate, int lcid);
1254 int tds_iconv_alloc(TDSCONNECTION * conn);
1255 void tds_iconv_free(TDSCONNECTION * conn);
1256 TDSICONV *tds_iconv_from_collate(TDSCONNECTION * conn, TDS_UCHAR collate[5]);
1257 
1258 
1259 /* threadsafe.c */
1260 char *tds_timestamp_str(char *str, int maxlen);
1261 struct tm *tds_localtime_r(const time_t *timep, struct tm *result);
1262 struct hostent *tds_gethostbyname_r(const char *servername, struct hostent *result, char *buffer, int buflen, int *h_errnop);
1263 int tds_getservice(const char *name);
1264 char *tds_get_homedir(void);
1265 
1266 
1267 /* mem.c */
1268 void tds_free_socket(TDSSOCKET * tds);
1269 void tds_free_all_results(TDSSOCKET * tds);
1270 void tds_free_results(TDSRESULTINFO * res_info);
1271 void tds_free_param_results(TDSPARAMINFO * param_info);
1272 void tds_free_param_result(TDSPARAMINFO * param_info);
1273 void tds_free_msg(TDSMESSAGE * message);
1274 void tds_cursor_deallocated(TDSCONNECTION *conn, TDSCURSOR *cursor);
1275 void tds_release_cursor(TDSCURSOR **pcursor);
1276 void tds_free_bcp_column_data(BCPCOLDATA * coldata);
1277 TDSRESULTINFO *tds_alloc_results(TDS_USMALLINT num_cols);
1278 TDSCOMPUTEINFO **tds_alloc_compute_results(TDSSOCKET * tds, TDS_USMALLINT num_cols, TDS_USMALLINT by_cols);
1279 TDSCONTEXT *tds_alloc_context(void * parent);
1280 void tds_free_context(TDSCONTEXT * locale);
1281 TDSPARAMINFO *tds_alloc_param_result(TDSPARAMINFO * old_param);
1282 void tds_free_input_params(TDSDYNAMIC * dyn);
1283 void tds_release_dynamic(TDSDYNAMIC ** dyn);
1284 static inline
1285 void tds_release_cur_dyn(TDSSOCKET * tds)
1286 {
1288 }
1289 void tds_dynamic_deallocated(TDSCONNECTION *conn, TDSDYNAMIC *dyn);
1290 void tds_set_cur_dyn(TDSSOCKET *tds, TDSDYNAMIC *dyn);
1291 TDSSOCKET *tds_realloc_socket(TDSSOCKET * tds, size_t bufsize);
1292 char *tds_alloc_client_sqlstate(int msgno);
1293 char *tds_alloc_lookup_sqlstate(TDSSOCKET * tds, int msgno);
1294 TDSLOGIN *tds_alloc_login(int use_environment);
1295 TDSDYNAMIC *tds_alloc_dynamic(TDSCONNECTION * conn, const char *id);
1296 void tds_free_login(TDSLOGIN * login);
1297 TDSLOGIN *tds_init_login(TDSLOGIN * login, TDSLOCALE * locale);
1298 TDSLOCALE *tds_alloc_locale(void);
1299 void *tds_alloc_param_data(TDSCOLUMN * curparam);
1300 void tds_free_locale(TDSLOCALE * locale);
1301 TDSCURSOR * tds_alloc_cursor(TDSSOCKET * tds, const char *name, TDS_INT namelen, const char *query, TDS_INT querylen);
1302 void tds_free_row(TDSRESULTINFO * res_info, unsigned char *row);
1303 TDSSOCKET *tds_alloc_socket(TDSCONTEXT * context, unsigned int bufsize);
1304 TDSSOCKET *tds_alloc_additional_socket(TDSCONNECTION *conn);
1305 void tds_set_current_results(TDSSOCKET *tds, TDSRESULTINFO *info);
1306 void tds_detach_results(TDSRESULTINFO *info);
1307 void * tds_realloc(void **pp, size_t new_size);
1308 #define TDS_RESIZE(p, n_elem) \
1309  tds_realloc((void **) &(p), sizeof(*(p)) * (size_t) (n_elem))
1310 
1311 TDSPACKET *tds_alloc_packet(void *buf, unsigned len);
1312 TDSPACKET *tds_realloc_packet(TDSPACKET *packet, unsigned len);
1313 void tds_free_packets(TDSPACKET *packet);
1314 TDSBCPINFO *tds_alloc_bcpinfo(void);
1315 void tds_free_bcpinfo(TDSBCPINFO *bcpinfo);
1316 void tds_deinit_bcpinfo(TDSBCPINFO *bcpinfo);
1317 
1318 
1319 /* login.c */
1320 void tds_set_packet(TDSLOGIN * tds_login, int packet_size);
1321 void tds_set_port(TDSLOGIN * tds_login, int port);
1322 bool tds_set_passwd(TDSLOGIN * tds_login, const char *password) TDS_WUR;
1323 void tds_set_bulk(TDSLOGIN * tds_login, TDS_TINYINT enabled);
1324 bool tds_set_user(TDSLOGIN * tds_login, const char *username) TDS_WUR;
1325 bool tds_set_app(TDSLOGIN * tds_login, const char *application) TDS_WUR;
1326 bool tds_set_host(TDSLOGIN * tds_login, const char *hostname) TDS_WUR;
1327 bool tds_set_library(TDSLOGIN * tds_login, const char *library) TDS_WUR;
1328 bool tds_set_server(TDSLOGIN * tds_login, const char *server) TDS_WUR;
1329 bool tds_set_client_charset(TDSLOGIN * tds_login, const char *charset) TDS_WUR;
1330 bool tds_set_language(TDSLOGIN * tds_login, const char *language) TDS_WUR;
1331 void tds_set_version(TDSLOGIN * tds_login, TDS_TINYINT major_ver, TDS_TINYINT minor_ver);
1332 int tds_connect_and_login(TDSSOCKET * tds, TDSLOGIN * login);
1333 
1334 
1335 /* query.c */
1336 TDSRET tds_submit_query(TDSSOCKET * tds, const char *query);
1337 TDSRET tds_submit_query_params(TDSSOCKET * tds, const char *query, TDSPARAMINFO * params, TDSHEADERS * head);
1338 TDSRET tds_submit_queryf(TDSSOCKET * tds, const char *queryf, ...);
1339 TDSRET tds_submit_prepare(TDSSOCKET * tds, const char *query, const char *id, TDSDYNAMIC ** dyn_out, TDSPARAMINFO * params);
1340 TDSRET tds_submit_execdirect(TDSSOCKET * tds, const char *query, TDSPARAMINFO * params, TDSHEADERS * head);
1341 TDSRET tds71_submit_prepexec(TDSSOCKET * tds, const char *query, const char *id, TDSDYNAMIC ** dyn_out, TDSPARAMINFO * params);
1342 TDSRET tds_submit_execute(TDSSOCKET * tds, TDSDYNAMIC * dyn);
1343 TDSRET tds_send_cancel(TDSSOCKET * tds);
1344 const char *tds_next_placeholder(const char *start);
1345 int tds_count_placeholders(const char *query);
1346 int tds_needs_unprepare(TDSCONNECTION * conn, TDSDYNAMIC * dyn);
1347 TDSRET tds_deferred_unprepare(TDSCONNECTION * conn, TDSDYNAMIC * dyn);
1348 TDSRET tds_submit_unprepare(TDSSOCKET * tds, TDSDYNAMIC * dyn);
1349 TDSRET tds_submit_rpc(TDSSOCKET * tds, const char *rpc_name, TDSPARAMINFO * params, TDSHEADERS * head);
1350 TDSRET tds_submit_optioncmd(TDSSOCKET * tds, TDS_OPTION_CMD command, TDS_OPTION option, TDS_OPTION_ARG *param, TDS_INT param_size);
1351 TDSRET tds_submit_begin_tran(TDSSOCKET *tds);
1352 TDSRET tds_submit_rollback(TDSSOCKET *tds, int cont);
1353 TDSRET tds_submit_commit(TDSSOCKET *tds, int cont);
1354 TDSRET tds_disconnect(TDSSOCKET * tds);
1355 size_t tds_quote_id(TDSSOCKET * tds, char *buffer, const char *id, int idlen);
1356 size_t tds_quote_string(TDSSOCKET * tds, char *buffer, const char *str, int len);
1357 const char *tds_skip_comment(const char *s);
1358 const char *tds_skip_quoted(const char *s);
1359 size_t tds_fix_column_size(TDSSOCKET * tds, TDSCOLUMN * curcol);
1360 const char *tds_convert_string(TDSSOCKET * tds, TDSICONV * char_conv, const char *s, int len, size_t *out_len);
1361 void tds_convert_string_free(const char *original, const char *converted);
1362 #if !ENABLE_EXTRA_CHECKS
1363 #define tds_convert_string_free(original, converted) \
1364  do { if (original != converted) free((char*) converted); } while(0)
1365 #endif
1366 TDSRET tds_get_column_declaration(TDSSOCKET * tds, TDSCOLUMN * curcol, char *out);
1367 
1368 TDSRET tds_cursor_declare(TDSSOCKET * tds, TDSCURSOR * cursor, TDSPARAMINFO *params, int *send);
1369 TDSRET tds_cursor_setrows(TDSSOCKET * tds, TDSCURSOR * cursor, int *send);
1370 TDSRET tds_cursor_open(TDSSOCKET * tds, TDSCURSOR * cursor, TDSPARAMINFO *params, int *send);
1371 TDSRET tds_cursor_fetch(TDSSOCKET * tds, TDSCURSOR * cursor, TDS_CURSOR_FETCH fetch_type, TDS_INT i_row);
1372 TDSRET tds_cursor_get_cursor_info(TDSSOCKET * tds, TDSCURSOR * cursor, TDS_UINT * row_number, TDS_UINT * row_count);
1373 TDSRET tds_cursor_close(TDSSOCKET * tds, TDSCURSOR * cursor);
1374 TDSRET tds_cursor_dealloc(TDSSOCKET * tds, TDSCURSOR * cursor);
1375 TDSRET tds_deferred_cursor_dealloc(TDSCONNECTION *conn, TDSCURSOR * cursor);
1376 TDSRET tds_cursor_update(TDSSOCKET * tds, TDSCURSOR * cursor, TDS_CURSOR_OPERATION op, TDS_INT i_row, TDSPARAMINFO * params);
1377 TDSRET tds_cursor_setname(TDSSOCKET * tds, TDSCURSOR * cursor);
1378 
1379 TDSRET tds_multiple_init(TDSSOCKET *tds, TDSMULTIPLE *multiple, TDS_MULTIPLE_TYPE type, TDSHEADERS * head);
1380 TDSRET tds_multiple_done(TDSSOCKET *tds, TDSMULTIPLE *multiple);
1381 TDSRET tds_multiple_query(TDSSOCKET *tds, TDSMULTIPLE *multiple, const char *query, TDSPARAMINFO * params);
1382 TDSRET tds_multiple_execute(TDSSOCKET *tds, TDSMULTIPLE *multiple, TDSDYNAMIC * dyn);
1383 
1384 
1385 /* token.c */
1386 TDSRET tds_process_cancel(TDSSOCKET * tds);
1387 int tds_get_token_size(int marker);
1388 TDSRET tds_process_login_tokens(TDSSOCKET * tds);
1389 TDSRET tds_process_simple_query(TDSSOCKET * tds);
1390 int tds5_send_optioncmd(TDSSOCKET * tds, TDS_OPTION_CMD tds_command, TDS_OPTION tds_option, TDS_OPTION_ARG * tds_argument,
1391  TDS_INT * tds_argsize);
1392 TDSRET tds_process_tokens(TDSSOCKET * tds, /*@out@*/ TDS_INT * result_type, /*@out@*/ int *done_flags, unsigned flag);
1393 int determine_adjusted_size(const TDSICONV * char_conv, int size);
1394 
1395 
1396 /* data.c */
1397 void tds_set_param_type(TDSCONNECTION * conn, TDSCOLUMN * curcol, TDS_SERVER_TYPE type);
1398 void tds_set_column_type(TDSCONNECTION * conn, TDSCOLUMN * curcol, int type);
1399 
1400 
1401 /* tds_convert.c */
1402 TDSRET tds_datecrack(TDS_INT datetype, const void *di, TDSDATEREC * dr);
1403 int tds_get_conversion_type(int srctype, int colsize);
1404 extern const char tds_hex_digits[];
1405 
1406 
1407 /* write.c */
1408 int tds_init_write_buf(TDSSOCKET * tds);
1409 int tds_put_n(TDSSOCKET * tds, const void *buf, size_t n);
1410 int tds_put_string(TDSSOCKET * tds, const char *buf, int len);
1411 int tds_put_int(TDSSOCKET * tds, TDS_INT i);
1412 int tds_put_int8(TDSSOCKET * tds, TDS_INT8 i);
1413 int tds_put_smallint(TDSSOCKET * tds, TDS_SMALLINT si);
1415 #define tds_put_tinyint(tds, ti) tds_put_byte(tds,ti)
1416 int tds_put_byte(TDSSOCKET * tds, unsigned char c);
1417 TDSRET tds_flush_packet(TDSSOCKET * tds);
1418 int tds_put_buf(TDSSOCKET * tds, const unsigned char *buf, int dsize, int ssize);
1419 
1420 
1421 /* read.c */
1422 unsigned char tds_get_byte(TDSSOCKET * tds);
1423 void tds_unget_byte(TDSSOCKET * tds);
1424 unsigned char tds_peek(TDSSOCKET * tds);
1425 TDS_USMALLINT tds_get_usmallint(TDSSOCKET * tds);
1426 #define tds_get_smallint(tds) ((TDS_SMALLINT) tds_get_usmallint(tds))
1427 TDS_UINT tds_get_uint(TDSSOCKET * tds);
1428 #define tds_get_int(tds) ((TDS_INT) tds_get_uint(tds))
1429 TDS_UINT8 tds_get_uint8(TDSSOCKET * tds);
1430 #define tds_get_int8(tds) ((TDS_INT8) tds_get_uint8(tds))
1431 size_t tds_get_string(TDSSOCKET * tds, size_t string_len, char *dest, size_t dest_size);
1432 TDSRET tds_get_char_data(TDSSOCKET * tds, char *dest, size_t wire_size, TDSCOLUMN * curcol);
1433 void *tds_get_n(TDSSOCKET * tds, /*@out@*/ /*@null@*/ void *dest, size_t n);
1434 int tds_get_size_by_type(int servertype);
1435 DSTR* tds_dstr_get(TDSSOCKET * tds, DSTR * s, size_t len);
1436 
1437 
1438 /* util.c */
1439 int tdserror (const TDSCONTEXT * tds_ctx, TDSSOCKET * tds, int msgno, int errnum);
1440 TDS_STATE tds_set_state(TDSSOCKET * tds, TDS_STATE state);
1441 void tds_swap_bytes(void *buf, int bytes);
1442 #ifdef ENABLE_DEVELOPING
1443 unsigned int tds_gettime_ms(void);
1444 #endif
1445 char *tds_strndup(const void *s, TDS_INTPTR len);
1446 
1447 
1448 /* log.c */
1449 void tdsdump_off(void);
1450 void tdsdump_on(void);
1451 int tdsdump_isopen(void);
1452 #include <freetds/popvis.h>
1453 int tdsdump_open(const char *filename);
1454 #include <freetds/pushvis.h>
1455 void tdsdump_close(void);
1456 void tdsdump_dump_buf(const char* file, unsigned int level_line, const char *msg, const void *buf, size_t length);
1457 void tdsdump_col(const TDSCOLUMN *col);
1458 #undef tdsdump_log
1459 void tdsdump_log(const char* file, unsigned int level_line, const char *fmt, ...)
1460 #if defined(__GNUC__) && __GNUC__ >= 2
1461 #if defined(__MINGW32__)
1462  __attribute__ ((__format__ (ms_printf, 3, 4)))
1463 #else
1464  __attribute__ ((__format__ (__printf__, 3, 4)))
1465 #endif
1466 #endif
1467 ;
1468 #define TDSDUMP_LOG_FAST if (TDS_UNLIKELY(tds_write_dump)) tdsdump_log
1469 #define tdsdump_log TDSDUMP_LOG_FAST
1470 #define TDSDUMP_BUF_FAST if (TDS_UNLIKELY(tds_write_dump)) tdsdump_dump_buf
1471 #define tdsdump_dump_buf TDSDUMP_BUF_FAST
1472 
1473 extern int tds_write_dump;
1474 extern int tds_debug_flags;
1475 extern int tds_g_append_mode;
1476 
1477 
1478 /* net.c */
1479 TDSERRNO tds_open_socket(TDSSOCKET * tds, struct addrinfo *ipaddr, unsigned int port, int timeout, int *p_oserr);
1480 void tds_close_socket(TDSSOCKET * tds);
1481 int tds7_get_instance_ports(FILE *output, struct addrinfo *addr);
1482 int tds7_get_instance_port(struct addrinfo *addr, const char *instance);
1483 char *tds_prwsaerror(int erc);
1484 void tds_prwsaerror_free(char *s);
1485 int tds_connection_read(TDSSOCKET * tds, unsigned char *buf, int buflen);
1486 int tds_connection_write(TDSSOCKET *tds, unsigned char *buf, int buflen, int final);
1487 #define TDSSELREAD POLLIN
1488 #define TDSSELWRITE POLLOUT
1489 int tds_select(TDSSOCKET * tds, unsigned tds_sel, int timeout_seconds);
1490 #if ENABLE_ODBC_MARS
1491 void tds_connection_close(TDSCONNECTION *conn);
1492 #endif
1493 int tds_goodread(TDSSOCKET * tds, unsigned char *buf, int buflen);
1494 int tds_goodwrite(TDSSOCKET * tds, const unsigned char *buffer, size_t buflen, unsigned char last);
1495 
1496 
1497 /* packet.c */
1498 int tds_read_packet(TDSSOCKET * tds);
1499 TDSRET tds_write_packet(TDSSOCKET * tds, unsigned char final);
1500 #if ENABLE_ODBC_MARS
1501 int tds_append_cancel(TDSSOCKET *tds);
1502 TDSRET tds_append_fin(TDSSOCKET *tds);
1503 #else
1504 int tds_put_cancel(TDSSOCKET * tds);
1505 static inline
1506 void tds_connection_close(TDSCONNECTION *connection)
1507 {
1508  tds_close_socket((TDSSOCKET* ) connection);
1509 }
1510 #endif
1511 
1512 
1513 /* vstrbuild.c */
1514 TDSRET tds_vstrbuild(char *buffer, int buflen, int *resultlen, const char *text, int textlen, const char *formats, int formatlen,
1515  va_list ap);
1516 
1517 
1518 /* numeric.c */
1519 char *tds_money_to_string(const TDS_MONEY * money, char *s);
1520 TDS_INT tds_numeric_to_string(const TDS_NUMERIC * numeric, char *s);
1521 TDS_INT tds_numeric_change_prec_scale(TDS_NUMERIC * numeric, unsigned char new_prec, unsigned char new_scale);
1522 
1523 
1524 /* getmac.c */
1525 void tds_getmac(TDS_SYS_SOCKET s, unsigned char mac[6]);
1526 
1527 
1528 /* challenge.c */
1529 #ifndef HAVE_SSPI
1530 TDSAUTHENTICATION * tds_ntlm_get_auth(TDSSOCKET * tds);
1531 TDSAUTHENTICATION * tds_gss_get_auth(TDSSOCKET * tds);
1532 #else
1533 TDSAUTHENTICATION * tds_sspi_get_auth(TDSSOCKET * tds);
1534 #endif
1535 
1536 
1537 /* bulk.c */
1538 
1541 {
1542  TDS_BCP_IN = 1,
1543  TDS_BCP_OUT = 2,
1544  TDS_BCP_QUERYOUT = 3
1545 };
1546 
1548 {
1549  const char *hint;
1550  void *parent;
1551  DSTR tablename;
1552  TDS_CHAR *insert_stmt;
1553  TDS_INT direction;
1554  TDS_INT identity_insert_on;
1555  TDS_INT xfer_init;
1556  TDS_INT bind_count;
1557  TDSRESULTINFO *bindinfo;
1558 };
1559 
1560 TDSRET tds_bcp_init(TDSSOCKET *tds, TDSBCPINFO *bcpinfo);
1561 typedef TDSRET (*tds_bcp_get_col_data) (TDSBCPINFO *bulk, TDSCOLUMN *bcpcol, int offset);
1562 typedef void (*tds_bcp_null_error) (TDSBCPINFO *bulk, int index, int offset);
1563 TDSRET tds_bcp_send_record(TDSSOCKET *tds, TDSBCPINFO *bcpinfo, tds_bcp_get_col_data get_col_data, tds_bcp_null_error null_error, int offset);
1564 TDSRET tds_bcp_done(TDSSOCKET *tds, int *rows_copied);
1565 TDSRET tds_bcp_start(TDSSOCKET *tds, TDSBCPINFO *bcpinfo);
1566 TDSRET tds_bcp_start_copy_in(TDSSOCKET *tds, TDSBCPINFO *bcpinfo);
1567 
1568 TDSRET tds_bcp_fread(TDSSOCKET * tds, TDSICONV * conv, FILE * stream,
1569  const char *terminator, size_t term_len, char **outbuf, size_t * outbytes);
1570 
1571 TDSRET tds_writetext_start(TDSSOCKET *tds, const char *objname, const char *textptr, const char *timestamp, int with_log, TDS_UINT size);
1572 TDSRET tds_writetext_continue(TDSSOCKET *tds, const TDS_UCHAR *text, TDS_UINT size);
1573 TDSRET tds_writetext_end(TDSSOCKET *tds);
1574 
1575 
1576 static inline
1577 int tds_capability_enabled(const TDS_CAPABILITY_TYPE *cap, unsigned cap_num)
1578 {
1579  return cap->values[sizeof(cap->values)-1-(cap_num>>3)] & (1 << (cap_num&7));
1580 }
1581 #define tds_capability_has_req(conn, cap) \
1582  tds_capability_enabled(&conn->capabilities.types[0], cap)
1583 
1584 #define IS_TDS42(x) (x->tds_version==0x402)
1585 #define IS_TDS46(x) (x->tds_version==0x406)
1586 #define IS_TDS50(x) (x->tds_version==0x500)
1587 #define IS_TDS70(x) (x->tds_version==0x700)
1588 #define IS_TDS71(x) (x->tds_version==0x701)
1589 #define IS_TDS72(x) (x->tds_version==0x702)
1590 #define IS_TDS73(x) (x->tds_version==0x703)
1591 
1592 #define IS_TDS7_PLUS(x) ((x)->tds_version>=0x700)
1593 #define IS_TDS71_PLUS(x) ((x)->tds_version>=0x701)
1594 #define IS_TDS72_PLUS(x) ((x)->tds_version>=0x702)
1595 #define IS_TDS73_PLUS(x) ((x)->tds_version>=0x703)
1596 #define IS_TDS74_PLUS(x) ((x)->tds_version>=0x704)
1597 
1598 #define TDS_MAJOR(x) ((x)->tds_version >> 8)
1599 #define TDS_MINOR(x) ((x)->tds_version & 0xff)
1600 
1601 #define IS_TDSDEAD(x) (((x) == NULL) || (x)->state == TDS_DEAD)
1602 
1604 #define TDS_IS_SYBASE(x) (!((x)->conn->product_version & 0x80000000u))
1605 
1606 #define TDS_IS_MSSQL(x) (((x)->conn->product_version & 0x80000000u)!=0)
1607 
1611 #define TDS_MS_VER(maj,min,x) (0x80000000u|((maj)<<24)|((min)<<16)|(x))
1612 
1613 /* TODO test if not similar to ms one*/
1615 #define TDS_SYB_VER(maj,min,x) (((maj)<<24)|((min)<<16)|(x)<<8)
1616 
1617 #ifdef __cplusplus
1618 #if 0
1619 {
1620 #endif
1621 }
1622 #endif
1623 
1624 #include <freetds/popvis.h>
1625 
1626 #define TDS_PUT_INT(tds,v) tds_put_int((tds), ((TDS_INT)(v)))
1627 #define TDS_PUT_SMALLINT(tds,v) tds_put_smallint((tds), ((TDS_SMALLINT)(v)))
1628 #define TDS_PUT_BYTE(tds,v) tds_put_byte((tds), ((unsigned char)(v)))
1629 
1630 #endif /* _tds_h_ */
void tds_close_socket(TDSSOCKET *tds)
Close current socket for last socket close entire connection for MARS send FIN request.
Definition: net.c:335
TDS_INT cursor_rows
< number of updatable columns
Definition: tds.h:956
error occurred
Definition: tds.h:246
TDS_TINYINT has_status
true is ret_status is valid
Definition: tds.h:1192
TDSRESULTINFO * current_results
Current query information.
Definition: tds.h:1185
Information relevant to libiconv.
Definition: tds.h:627
int tds_iconv_alloc(TDSCONNECTION *conn)
Allocate iconv stuff.
Definition: iconv.c:265
TDS_INT num_id
numeric id for mssql7+
Definition: tds.h:983
TDS_INT second
0-59
Definition: tds.h:164
int tdsdump_open(const char *filename)
Create and truncate a human readable dump file for the TDS traffic.
Definition: log.c:111
unsigned char * in_buf
Input buffer.
Definition: tds.h:1145
TDSDYNAMIC * tds_lookup_dynamic(TDSCONNECTION *conn, const char *id)
Finds a dynamic given string id.
Definition: token.c:2516
TDS_CURSOR_STATUS status
cursor parameter
Definition: tds.h:958
Definition: tds.h:1065
TDSRET tds_submit_execute(TDSSOCKET *tds, TDSDYNAMIC *dyn)
tds_submit_execute() sends a previously prepared dynamic statement to the server. ...
Definition: query.c:1723
TDS_TINYINT bulk_query
true is query sent was a bulk query so we need to switch state to QUERYING
Definition: tds.h:1191
TDS_TINYINT emulated
this dynamic query cannot be prepared so libTDS have to construct a simple query. ...
Definition: tds.h:995
final result set, command completed successfully.
Definition: tds.h:244
Definition: tds.h:1056
void tdsdump_off(void)
Temporarily turn off logging.
Definition: log.c:75
TDS_SYS_SOCKET s
tcp socket, INVALID_SOCKET if not connected
Definition: tds.h:1071
const int tds_numeric_bytes_per_prec[]
The following little table is indexed by precision and will tell us the number of bytes required to s...
Definition: numeric.c:41
char * cursor_name
name of the cursor
Definition: tds.h:945
char * tds_timestamp_str(char *str, int maxlen)
Definition: threadsafe.c:101
TDSRET tds_deferred_unprepare(TDSCONNECTION *conn, TDSDYNAMIC *dyn)
Unprepare dynamic on idle.
Definition: query.c:1850
TDSDYNAMIC * dyns
list of dynamic allocated for this connection contains only dynamic allocated on the server ...
Definition: tds.h:1087
Definition: tds.h:896
TDS_UINT8 tds_get_uint8(TDSSOCKET *tds)
Get an uint64 from the server.
Definition: read.c:148
void tdsdump_on(void)
Turn logging back on.
Definition: log.c:87
char * query
SQL query.
Definition: tds.h:952
int tds_get_token_size(int marker)
tds_get_token_size() returns the size of a fixed length token used by tds_process_cancel() to determi...
Definition: token.c:2683
void tdsdump_close(void)
Close the TDS dump log file.
Definition: log.c:192
count field in packet is valid
Definition: tds.h:249
TDSRET tds_submit_begin_tran(TDSSOCKET *tds)
Send a rollback request.
Definition: query.c:3677
TDSRET tds_flush_packet(TDSSOCKET *tds)
Flush packet to server.
Definition: write.c:285
TDS_INT hour
0-23
Definition: tds.h:162
TDSRET tds_submit_prepare(TDSSOCKET *tds, const char *query, const char *id, TDSDYNAMIC **dyn_out, TDSPARAMINFO *params)
tds_submit_prepare() creates a temporary stored procedure in the server.
Definition: query.c:1165
Information about blobs (e.g.
Definition: tds.h:602
enum tds_states TDS_STATE
values for tds->state
DSTR db_filename
database filename to attach (MSSQL)
Definition: tds.h:545
int tds_select(TDSSOCKET *tds, unsigned tds_sel, int timeout_seconds)
Select on a socket until it's available or the timeout expires.
Definition: net.c:393
DSTR * tds_dstr_get(TDSSOCKET *tds, DSTR *s, size_t len)
Reads a string from wire and put in a DSTR.
Definition: read.c:313
Definition: tds.h:591
int tdserror(const TDSCONTEXT *tds_ctx, TDSSOCKET *tds, int msgno, int errnum)
Call the client library's error handler (for library-generated errors only)
Definition: util.c:310
Definition: tds.h:635
const char * tds_skip_quoted(const char *s)
Skip quoting string (like 'sfsf', "dflkdj" or [dfkjd])
Definition: query.c:533
Used by tds_datecrack.
Definition: tds.h:154
TDSRET tds_writetext_end(TDSSOCKET *tds)
Finish sending writetext data.
Definition: bulk.c:1148
TDS_INT tds_numeric_to_string(const TDS_NUMERIC *numeric, char *s)
Definition: numeric.c:94
unsigned char * out_buf
Output buffer.
Definition: tds.h:1152
TDS_INT ref_count
reference counter so client can retain safely a pointer
Definition: tds.h:981
int tds_read_conf_section(FILE *in, const char *section, TDSCONFPARSE tds_conf_parse, void *parse_param)
Read a section of configuration file (INI style file)
Definition: config.c:485
TDS_USMALLINT * tds_config_verstr(const char *tdsver, TDSLOGIN *login)
Set TDS version from given string.
Definition: config.c:866
TDS_INT quarter
quarter (0-3)
Definition: tds.h:157
TDSPACKET * send_packet
packet we are preparing to send
Definition: tds.h:1178
DSTR server_realm_name
server realm name (in freetds.conf)
Definition: tds.h:543
Definition: proto.h:38
cilent is waiting for data
Definition: tds.h:798
TDS_INT day
day of month (1-31)
Definition: tds.h:159
Definition: tds.h:1020
int tds_put_string(TDSSOCKET *tds, const char *buf, int len)
Output a string to wire automatic translate string to unicode if needed.
Definition: write.c:93
DSTR password
password of account login
Definition: tds.h:550
TDSDYNAMIC * cur_dyn
dynamic structure in use
Definition: tds.h:1202
int tds_count_placeholders(const char *query)
Count the number of placeholders in query.
Definition: query.c:589
TDSRET tds_submit_rollback(TDSSOCKET *tds, int cont)
Send a rollback request.
Definition: query.c:3705
const char * tds_prtype(int token)
Returns string representation of the given type.
Definition: token.c:2980
TDSLOGIN * tds_init_login(TDSLOGIN *login, TDSLOCALE *locale)
Initialize login structure with locale information and other stuff for connection.
Definition: mem.c:783
Current environment as reported by the server.
Definition: tds.h:967
TDSRET tds_submit_queryf(TDSSOCKET *tds, const char *queryf,...)
Format and submit a query.
Definition: query.c:485
unsigned in_pos
current position in in_buf
Definition: tds.h:1159
TDSLOGIN * login
config for login stuff.
Definition: tds.h:1204
TDSRET tds_cursor_dealloc(TDSSOCKET *tds, TDSCURSOR *cursor)
Send a deallocation request to server.
Definition: query.c:3066
struct tds_compiletime_settings TDS_COMPILETIME_SETTINGS
A structure to hold all the compile-time settings.
DSTR server_name
server name (in freetds.conf)
Definition: tds.h:534
Information for a server connection.
Definition: tds.h:1132
TDSRET tds_bcp_done(TDSSOCKET *tds, int *rows_copied)
Tell we finished sending BCP data to server.
Definition: bulk.c:785
TDS_UINT8 time
time, 7 digit precision
Definition: tds.h:143
int tds7_get_instance_ports(FILE *output, struct addrinfo *addr)
Get port of all instances.
Definition: net.c:783
DSTR server_charset
charset of server e.g.
Definition: tds.h:539
tds_states
values for tds->state
Definition: tds.h:793
struct tds_env TDSENV
Current environment as reported by the server.
acknowledging an attention command (usually a cancel)
Definition: tds.h:250
TDS_INT8 rows_affected
rows updated/deleted/inserted/selected, TDS_NO_COUNT if not valid
Definition: tds.h:1199
int tds_getservice(const char *name)
Return service port given the name.
Definition: threadsafe.c:343
TDSRET tds_submit_unprepare(TDSSOCKET *tds, TDSDYNAMIC *dyn)
Send a unprepare request for a prepared query.
Definition: query.c:1873
TDS_INT column_size
maximun size of data.
Definition: tds.h:702
struct tds_blob TDSBLOB
Information about blobs (e.g.
TDSRET tds_deferred_cursor_dealloc(TDSCONNECTION *conn, TDSCURSOR *cursor)
Deallocate cursor on idle.
Definition: query.c:3117
TDS_INT ref_count
reference counter so client can retain safely a pointer
Definition: tds.h:944
int tds_read_conf_file(TDSLOGIN *login, const char *server)
Read configuration info for given server return 0 on error.
Definition: config.c:338
const char * tds_next_placeholder(const char *start)
Get position of next placeholder.
Definition: query.c:553
TDSCURSOR * cur_cursor
cursor in use
Definition: tds.h:1190
struct addrinfo * tds_lookup_host(const char *servername)
Get the IP address for a hostname.
Definition: config.c:935
TDS_INT cursor_id
cursor id returned by the server after cursor declare
Definition: tds.h:946
TDS_INT year
year
Definition: tds.h:156
TDS_TINYINT column_prec
precision for decimal/numeric
Definition: tds.h:711
size_t tds_fix_column_size(TDSSOCKET *tds, TDSCOLUMN *curcol)
Get column size for wire.
Definition: query.c:1546
unsigned int pending_close
true is connection has pending closing (cursors or dynamic)
Definition: tds.h:1099
TDS_INT dayofyear
day of year (1-366)
Definition: tds.h:160
Metadata about columns in regular and compute rows.
Definition: tds.h:696
TDSENV env
environment is shared between all sessions
Definition: tds.h:1076
SQL server server error.
Definition: tds.h:252
TDSRET tds_bcp_send_record(TDSSOCKET *tds, TDSBCPINFO *bcpinfo, tds_bcp_get_col_data get_col_data, tds_bcp_null_error null_error, int offset)
Send one row of data to server.
Definition: bulk.c:334
TDS_USMALLINT tds_get_usmallint(TDSSOCKET *tds)
Get an int16 from the server.
Definition: read.c:113
TDSRET tds_set_interfaces_file_loc(const char *interfloc)
Set the full name of interface file.
Definition: config.c:909
int tds_needs_unprepare(TDSCONNECTION *conn, TDSDYNAMIC *dyn)
Check if dynamic request must be unprepared.
Definition: query.c:1828
TDS_STATE tds_set_state(TDSSOCKET *tds, TDS_STATE state)
Set state of TDS connection, with logging and checking.
Definition: util.c:58
int tds_get_size_by_type(int servertype)
Return the number of bytes needed by specified type.
Definition: tds_types.h:9
struct tds_variant TDSVARIANT
Store variant informations.
DSTR crlfile
certificate revocation file
Definition: tds.h:547
void tds_detach_results(TDSRESULTINFO *info)
Detach result info from it current socket.
Definition: mem.c:482
TDS_INT month
month number (0-11)
Definition: tds.h:158
Definition: iconv.h:91
Definition: thread.h:215
void tds_free_param_result(TDSPARAMINFO *param_info)
Delete latest parameter.
Definition: mem.c:312
struct tds_cursor TDSCURSOR
Holds informations about a cursor.
void tdsdump_log(const char *file, unsigned int level_line, const char *fmt,...)
Write a message to the debug log.
Definition: log.c:353
TDS_TINYINT column_type
This type can be different from wire type because conversion (e.g.
Definition: tds.h:704
TDSRET tds_submit_rpc(TDSSOCKET *tds, const char *rpc_name, TDSPARAMINFO *params, TDSHEADERS *head)
tds_submit_rpc() call a RPC from server.
Definition: query.c:2007
struct tds_result_info TDSRESULTINFO
Hold information for any results.
volatile unsigned char in_cancel
indicate we are waiting a cancel reply; discard tokens till acknowledge; 1 mean we have to send cance...
Definition: tds.h:1196
TDSRET tds_submit_commit(TDSSOCKET *tds, int cont)
Send a commit request.
Definition: query.c:3736
transaction in progress
Definition: tds.h:247
TDSRET tds_submit_query_params(TDSSOCKET *tds, const char *query, TDSPARAMINFO *params, TDSHEADERS *head)
tds_submit_query_params() sends a language string to the database server for processing.
Definition: query.c:360
struct tds_cursor * next
next in linked list, keep first
Definition: tds.h:943
TDS_TINYINT options
read only|updatable TODO use it
Definition: tds.h:947
DSTR new_password
new password to set (TDS 7.2+)
Definition: tds.h:551
TDSDYNAMIC * tds_alloc_dynamic(TDSCONNECTION *conn, const char *id)
Allocate a dynamic statement.
Definition: mem.c:154
TDSRET tds_process_login_tokens(TDSSOCKET *tds)
tds_process_login_tokens() is called after sending the login packet to the server.
Definition: token.c:320
const TDS_COMPILETIME_SETTINGS * tds_get_compiletime_settings(void)
Return a structure capturing the compile-time settings provided to the configure script.
Definition: config.c:1284
Holds informations about a cursor.
Definition: tds.h:941
void tds_release_dynamic(TDSDYNAMIC **dyn)
Frees dynamic statement.
Definition: mem.c:247
TDSRET tds_send_cancel(TDSSOCKET *tds)
tds_send_cancel() sends an empty packet (8 byte header only) tds_process_cancel should be called dire...
Definition: query.c:2111
client is writing data
Definition: tds.h:796
TDSRET tds_bcp_start(TDSSOCKET *tds, TDSBCPINFO *bcpinfo)
Start sending BCP data to server.
Definition: bulk.c:815
TDSCURSOR * cursors
linked list of cursors allocated for this connection contains only cursors allocated on the server ...
Definition: tds.h:1082
Definition: tds.h:1048
struct addrinfo * ip_addrs
ip(s) of server
Definition: tds.h:561
DSTR cafile
certificate authorities file
Definition: tds.h:546
unsigned char out_flag
output buffer type
Definition: tds.h:1163
bool tds_set_server(TDSLOGIN *tds_login, const char *server) TDS_WUR
Set the servername in a TDSLOGIN structure.
Definition: login.c:121
int port
port of database service
Definition: tds.h:535
int tds_goodread(TDSSOCKET *tds, unsigned char *buf, int buflen)
Loops until we have received some characters return -1 on failure.
Definition: net.c:608
int tds_goodwrite(TDSSOCKET *tds, const unsigned char *buffer, size_t buflen, unsigned char last)
Definition: net.c:680
Hold information for any results.
Definition: tds.h:773
TDS_UINT product_version
version of product (Sybase/MS and full version)
Definition: tds.h:1068
TDS_INT bcp_prefix_len
The length, in bytes, of any length prefix this column may have.
Definition: tds.h:766
TDSRET tds_process_simple_query(TDSSOCKET *tds)
Process results for simple query as "SET TEXTSIZE" or "USE dbname" If the statement returns results...
Definition: token.c:875
void tds_free_input_params(TDSDYNAMIC *dyn)
Frees all allocated input parameters of a dynamic statement.
Definition: mem.c:200
TDS_UINT tds_get_uint(TDSSOCKET *tds)
Get an int32 from the server.
Definition: read.c:131
TDSRET tds_datecrack(TDS_INT datetype, const void *di, TDSDATEREC *dr)
Convert from db date format to a structured date format.
Definition: convert.c:3055
TDSPARAMINFO * res_info
query results
Definition: tds.h:1001
int tds_get_varint_size(TDSCONNECTION *conn, int datatype)
tds_get_varint_size() returns the size of a variable length integer returned in a TDS 7...
Definition: tds_types.h:55
TDSRET tds_submit_execdirect(TDSSOCKET *tds, const char *query, TDSPARAMINFO *params, TDSHEADERS *head)
Submit a prepared query with parameters.
Definition: query.c:1304
Definition: tds.h:519
tds_func_put_data * put_data
Send column data to server.
Definition: tds.h:670
TDSPARAMINFO * params
query parameters.
Definition: tds.h:1009
TDSPARAMINFO * tds_alloc_param_result(TDSPARAMINFO *old_param)
Adds a output parameter to TDSPARAMINFO.
Definition: mem.c:278
TDSRET tds_alloc_row(TDSRESULTINFO *res_info)
Allocate space for row store return NULL on out of memory.
Definition: mem.c:517
TDS_TINYINT defer_close
true if cursor was marker to be closed when connection is idle
Definition: tds.h:951
client would send data
Definition: tds.h:797
Holds information for a dynamic (also called prepared) query.
Definition: tds.h:978
unsigned char tds_peek(TDSSOCKET *tds)
Reads a byte from the TDS stream without removing it.
Definition: read.c:100
TDSRET tds_get_column_declaration(TDSSOCKET *tds, TDSCOLUMN *curcol, char *out)
Return declaration for column (like "varchar(20)")
Definition: query.c:728
TDSLOGIN * tds_read_config_info(TDSSOCKET *tds, TDSLOGIN *login, TDSLOCALE *locale)
tds_read_config_info() will fill the tds connection structure based on configuration information gath...
Definition: config.c:137
struct tdsdaterec TDSDATEREC
Used by tds_datecrack.
TDSLOCALE * tds_get_locale(void)
Get locale information.
Definition: locale.c:50
TDSICONV * tds_iconv_from_collate(TDSCONNECTION *conn, TDS_UCHAR collate[5])
Get iconv information from a LCID (to support different column encoding under MSSQL2K) ...
Definition: iconv.c:1226
Definition: proto.h:25
unsigned char in_flag
input buffer type
Definition: tds.h:1162
Definition: tds.h:321
void tds_set_cur_dyn(TDSSOCKET *tds, TDSDYNAMIC *dyn)
Set current dynamic.
Definition: query.c:186
no connection
Definition: tds.h:800
char * tds_strndup(const void *s, TDS_INTPTR len)
Copy a string of length len to a new allocated buffer This function does not read more than len bytes...
Definition: util.c:397
Definition: tds.h:910
TDSRET tds_writetext_continue(TDSSOCKET *tds, const TDS_UCHAR *text, TDS_UINT size)
Send some data in the writetext request started by tds_writetext_start.
Definition: bulk.c:1131
struct tds_dstr * DSTR
Structure to hold a string.
int determine_adjusted_size(const TDSICONV *char_conv, int size)
Allow for maximum possible size of converted data, while being careful about integer division truncat...
Definition: token.c:3204
Definition: tds.h:511
DSTR user_name
account for login
Definition: tds.h:549
Definition: tds.h:1030
TDS_INT type
row fetched from this cursor
Definition: tds.h:961
results are from a stored procedure
Definition: tds.h:248
TDS_INT decimicrosecond
0-9999999
Definition: tds.h:165
TDS_INT date
date, 0 = 1900-01-01
Definition: tds.h:144
int tds_get_conversion_type(int srctype, int colsize)
Return type suitable for conversions (convert all nullable types to fixed type)
Definition: tds_types.h:123
char * tds_get_homedir(void)
Get user home directory.
Definition: threadsafe.c:411
TDS_TINYINT column_scale
scale for decimal/numeric
Definition: tds.h:712
void tds_fix_login(TDSLOGIN *login)
Fix configuration after reading it.
Definition: config.c:277
TDS_INT minute
0-59
Definition: tds.h:163
TDSRET tds_process_tokens(TDSSOCKET *tds, TDS_INT *result_type, int *done_flags, unsigned flag)
process all streams.
Definition: token.c:530
tds_func_put_info * put_info
Send metadata column information to server.
Definition: tds.h:660
Store variant informations.
Definition: tds.h:613
client is reading data
Definition: tds.h:799
no data expected
Definition: tds.h:795
TDSRET tds_writetext_start(TDSSOCKET *tds, const char *objname, const char *textptr, const char *timestamp, int with_log, TDS_UINT size)
Start writing writetext request.
Definition: bulk.c:1093
int tds_write_dump
Tell if TDS debug logging is turned on or off.
Definition: log.c:57
unsigned char tds_get_byte(TDSSOCKET *tds)
Return a single byte from the input buffer.
Definition: read.c:72
TDS_INT weekday
day of week (0-6, 0 = sunday)
Definition: tds.h:161
TDS_INT column_cur_size
size written in variable (ie: char, text, binary).
Definition: tds.h:743
Definition: tds.h:880
A structure to hold all the compile-time settings.
Definition: tds.h:72
Definition: tds.h:532
TDSAUTHENTICATION * tds_ntlm_get_auth(TDSSOCKET *tds)
Build a NTLMSPP packet to send to server.
Definition: challenge.c:717
struct tds_dynamic TDSDYNAMIC
Holds information for a dynamic (also called prepared) query.
void tds_unget_byte(TDSSOCKET *tds)
Unget will always work as long as you don't call it twice in a row.
Definition: read.c:89
TDSRET tds_bcp_init(TDSSOCKET *tds, TDSBCPINFO *bcpinfo)
Initialize BCP information.
Definition: bulk.c:82
unsigned out_pos
current position in out_buf
Definition: tds.h:1160
const char * tds_skip_comment(const char *s)
Skip a comment in a query.
Definition: query.c:508
void tds_set_param_type(TDSCONNECTION *conn, TDSCOLUMN *curcol, TDS_SERVER_TYPE type)
Set type of column initializing all dependency.
Definition: data.c:88
TDSRET tds_submit_optioncmd(TDSSOCKET *tds, TDS_OPTION_CMD command, TDS_OPTION option, TDS_OPTION_ARG *param, TDS_INT param_size)
Send option commands to server.
Definition: query.c:3398
TDSRET tds_bcp_start_copy_in(TDSSOCKET *tds, TDSBCPINFO *bcpinfo)
Start bulk copy to server.
Definition: bulk.c:862
TDS_SMALLINT offset
time offset
Definition: tds.h:145
const char * tds_convert_string(TDSSOCKET *tds, TDSICONV *char_conv, const char *s, int len, size_t *out_len)
Convert a string in an allocated buffer.
Definition: query.c:122
TDSRET tds_get_char_data(TDSSOCKET *tds, char *dest, size_t wire_size, TDSCOLUMN *curcol)
Fetch character data the wire.
Definition: read.c:213
void tds_set_column_type(TDSCONNECTION *conn, TDSCOLUMN *curcol, int type)
Set type of column initializing all dependency.
Definition: data.c:66
TDS_INT ret_status
return status from store procedure
Definition: tds.h:1193
void tdsdump_dump_buf(const char *file, unsigned int level_line, const char *msg, const void *buf, size_t length)
Dump the contents of data into the log file in a human readable format.
Definition: log.c:255
void * tds_get_n(TDSSOCKET *tds, void *dest, size_t n)
Get N bytes from the buffer and return them in the already allocated space given to us...
Definition: read.c:248
Definition: tds.h:583
char * query
saved query, we need to know original query if prepare is impossible
Definition: tds.h:1011
TDS_TINYINT column_varint_size
size of length when reading from wire (0, 1, 2 or 4)
Definition: tds.h:709
tds_bcp_directions
bcp direction
Definition: tds.h:1540
TDS_USMALLINT tds_version
TDS version.
Definition: tds.h:536
DSTR server_spn
server SPN (in freetds.conf)
Definition: tds.h:544
int tds_read_packet(TDSSOCKET *tds)
Read in one 'packet' from the server.
Definition: packet.c:529
more results follow
Definition: tds.h:245
this structure is not directed connected to a TDS protocol but keeps any DATE/TIME information...
Definition: tds.h:141
TDS_TINYINT defer_close
true if dynamic was marker to be closed when connection is idle
Definition: tds.h:999
struct tds_dynamic * next
next in linked list, keep first
Definition: tds.h:980
Definition: tds.h:526
struct tds_encoding TDS_ENCODING
Information relevant to libiconv.
size_t tds_quote_id(TDSSOCKET *tds, char *buffer, const char *id, int idlen)
Quote an id.
Definition: query.c:2253
TDSRET tds_submit_query(TDSSOCKET *tds, const char *query)
tds_submit_query() sends a language string to the database server for processing. ...
Definition: query.c:204
int tds7_get_instance_port(struct addrinfo *addr, const char *instance)
Get port of given instance.
Definition: net.c:920
TDSRET tds_bcp_fread(TDSSOCKET *tds, TDSICONV *conv, FILE *stream, const char *terminator, size_t term_len, char **outbuf, size_t *outbytes)
Read a data file, passing the data through iconv().
Definition: bulk.c:1023
Definition: tds.h:1547
TDSRET tds_process_cancel(TDSSOCKET *tds)
Definition: token.c:2483
TDSICONV * char_conv
refers to previously allocated iconv information
Definition: tds.h:720
void * tds_alloc_param_data(TDSCOLUMN *curparam)
Allocate data for a parameter.
Definition: mem.c:356
void * tds_realloc(void **pp, size_t new_size)
Reallocate a pointer and update it if success.
Definition: mem.c:1804
Structure to hold a string.
Definition: tds.h:93
TDSRET tds71_submit_prepexec(TDSSOCKET *tds, const char *query, const char *id, TDSDYNAMIC **dyn_out, TDSPARAMINFO *params)
tds71_submit_prepexec() creates a temporary stored procedure in the server.
Definition: query.c:1451
size_t tds_get_string(TDSSOCKET *tds, size_t string_len, char *dest, size_t dest_size)
Fetch a string from the wire.
Definition: read.c:184
void tdsdump_col(const TDSCOLUMN *col)
Write a column value to the debug log.
Definition: log.c:407
size_t tds_quote_string(TDSSOCKET *tds, char *buffer, const char *str, int len)
Quote a string.
Definition: query.c:2297
unsigned in_len
input buffer length
Definition: tds.h:1161
unsigned int out_buf_max
Maximum size of packet pointed by out_buf.
Definition: tds.h:1158
tds_end
Flags returned in TDS_DONE token.
Definition: tds.h:242
Definition: tds.h:650