File: herr.h

package info (click to toggle)
unixodbc 2.3.1-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 11,524 kB
  • ctags: 7,656
  • sloc: ansic: 89,405; sh: 15,975; makefile: 1,574; yacc: 969; sql: 1
file content (135 lines) | stat: -rw-r--r-- 2,515 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/**
    Copyright (C) 1995, 1996 by Ke Jin <kejin@visigenic.com>
	Enhanced for unixODBC (1999) by Peter Harvey <pharvey@codebydesign.com>
	
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
**/
#ifndef 	_HERR_H
# define	_HERR_H

enum {
	en_00000 = 0,
	en_01000,
	en_01002,
	en_01004,
	en_01006,
	en_01S00,
	en_01S01,
	en_01S02,
	en_01S03,
	en_01S04,
	en_07001,
	en_07006,
	en_08001,
	en_08002,
	en_08003,
	en_08004,
	en_08007,
	en_08S01,
	en_0A000,
	en_21S01,
	en_21S02,
	en_22001,
	en_22003,
	en_22005,
	en_22008,
	en_22012,
	en_22026,
	en_23000,
	en_24000,
	en_25000,
	en_28000,
	en_34000,
	en_37000,
	en_3C000,
	en_40001,
	en_42000,
	en_70100,
	en_IM001,
	en_IM002,
	en_IM003,
	en_IM004,
	en_IM005,
	en_IM006,
	en_IM007,
	en_IM008,
	en_IM009,
	en_IM010,
	en_IM011,
	en_IM012,
	en_IM013,
	en_IM014,
	en_S0001,
	en_S0002,
	en_S0011,
	en_S0012,
	en_S0021,
	en_S0022,
	en_S0023,
	en_S1000,
	en_S1001,
	en_S1002,
	en_S1003,
	en_S1004,
	en_S1008,
	en_S1009,
	en_S1010,
	en_S1011,
	en_S1012,
	en_S1015,
	en_S1090,
	en_S1091,
	en_S1092,
	en_S1093,
	en_S1094,
	en_S1095,
	en_S1096,
	en_S1097,
	en_S1098,
	en_S1099,
	en_S1100,
	en_S1101,
	en_S1103,
	en_S1104,
	en_S1105,
	en_S1106,
	en_S1107,
	en_S1108,
	en_S1109,
	en_S1110,
	en_S1111,
	en_S1C00,
	en_S1T00
};

extern	void*	nnodbc_pusherr		(void* stack, int code, char* msg);
extern	void	nnodbc_poperr		(void* stack);
extern	int	nnodbc_errstkempty	(void* stack);
extern	int	nnodbc_getsqlstatcode	(void* stack);
extern	char*	nnodbc_getsqlstatstr	(void* stack);
extern	char*	nnodbc_getsqlstatmsg	(void* stack);
extern	int	nnodbc_getnativcode	(void* stack);
extern	char*	nnodbc_getnativemsg	(void* stack);
extern	void*	nnodbc_clearerr 	(void* stack);

# define	PUSHSQLERR(stack, stat) \
			stack = nnodbc_pusherr(stack, stat, 0)
# define	PUSHSYSERR(stack, code, msg) \
			stack = nnodbc_pusherr(stack, code, msg)

# define	UNSET_ERROR(stack) \
			nnodbc_errstkunset(stack)

# define	CLEAR_ERROR(stack) \
			stack = nnodbc_clearerr(stack)

# define	NNODBC_ERRHEAD		"[NetNews ODBC][NNODBC driver]"
#endif	/* _HERR_H */