FreeTDS API
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
tds_checks.h
1 /* FreeTDS - Library of routines accessing Sybase and Microsoft databases
2  * Copyright (C) 2004 Frediano Ziglio
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19 
20 #ifndef TDS_CHECKS_H
21 #define TDS_CHECKS_H
22 
23 /* $Id: tds_checks.h,v 1.3 2007/06/19 13:31:34 freddy77 Exp $ */
24 
25 #if ENABLE_EXTRA_CHECKS
26 #define CHECK_STRUCT_EXTRA(func,s) func(s)
27 #else
28 #define CHECK_STRUCT_EXTRA(func,s)
29 #endif
30 
31 #define CHECK_TDS_EXTRA(tds) CHECK_STRUCT_EXTRA(tds_check_tds_extra,tds)
32 #define CHECK_CONTEXT_EXTRA(ctx) CHECK_STRUCT_EXTRA(tds_check_context_extra,ctx)
33 #define CHECK_TDSENV_EXTRA(env) CHECK_STRUCT_EXTRA(tds_check_env_extra,env)
34 #define CHECK_COLUMN_EXTRA(column) CHECK_STRUCT_EXTRA(tds_check_column_extra,column)
35 #define CHECK_RESULTINFO_EXTRA(res_info) CHECK_STRUCT_EXTRA(tds_check_resultinfo_extra,res_info)
36 #define CHECK_PARAMINFO_EXTRA(res_info) CHECK_STRUCT_EXTRA(tds_check_resultinfo_extra,res_info)
37 #define CHECK_CURSOR_EXTRA(cursor) CHECK_STRUCT_EXTRA(tds_check_cursor_extra,cursor)
38 #define CHECK_DYNAMIC_EXTRA(dynamic) CHECK_STRUCT_EXTRA(tds_check_dynamic_extra,dynamic)
39 
40 #if ENABLE_EXTRA_CHECKS
41 void tds_check_tds_extra(const TDSSOCKET * tds);
42 void tds_check_context_extra(const TDSCONTEXT * ctx);
43 void tds_check_env_extra(const TDSENV * env);
44 void tds_check_column_extra(const TDSCOLUMN * column);
45 void tds_check_resultinfo_extra(const TDSRESULTINFO * res_info);
46 void tds_check_cursor_extra(const TDSCURSOR * cursor);
47 void tds_check_dynamic_extra(const TDSDYNAMIC * dynamic);
48 
49 int tds_get_cardinal_type(int datatype);
50 int tds_get_varint_size(TDSSOCKET * tds, int datatype);
51 #endif
52 
53 #endif /* TDS_CHECKS_H */
Current environment as reported by the server.
Definition: tds.h:1188
Definition: tds.h:1245
Hold information for a server connection.
Definition: tds.h:1276
Hold information for any results.
Definition: tds.h:1026
Metadata about columns in regular and compute rows.
Definition: tds.h:948
Holds information for a dynamic (also called prepared) query.
Definition: tds.h:1199
Holds informations about a cursor.
Definition: tds.h:1163