-
Notifications
You must be signed in to change notification settings - Fork 3
/
proc_util.pc
97 lines (73 loc) · 2.13 KB
/
proc_util.pc
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
/* {{{
This file is part of libtraceproc - a library for tracing Pro*C/OCI calls
Copyright (C) 2013 Georg Sauthoff <mail@georg.so>
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 3 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.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
}}} */
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <sqlcpr.h>
EXEC ORACLE OPTION (ORACA=YES);
EXEC SQL INCLUDE ORACA;
#include "ora_util.h"
#include "ret_check.h"
#include "proc_util.h"
void proc_error(int errorcode, struct oraca *o, const char *extra_msg, const char *func,
const char *filename, int line)
{
char msg[512] = "NOMSG";
if (errorcode)
{
size_t size = 511;
size_t ret = 0;
sqlglm((unsigned char*)msg, &size, &ret);
msg[ret] = 0;
}
fprintf(stderr, "%s() %s:%d: %s%sSQL-Error: %s (%.*s)\n",
func, filename, line,
extra_msg ? extra_msg : "",
extra_msg ? ", " : "",
msg,
o->orastxt.orastxtl, o->orastxt.orastxtc
);
}
int proc_connect()
{
char username[32] = {0};
char password[32] = {0};
char dbspec[32] = {0};
char at[32] = "orcl";
int ret = ora_init_vars2(username, password, dbspec, 31);
IFTRUERET(ret, 0, -1);
proc_init_oraca();
if (at[0] == 'o') {
EXEC SQL CONNECT :username IDENTIFIED BY :password
USING :dbspec;
} else {
EXEC SQL CONNECT :username IDENTIFIED BY :password
AT :at USING :dbspec;
}
IFSQLRET(0, -1);
return 0;
}
int proc_disconnect_commit()
{
EXEC SQL COMMIT WORK RELEASE;
IFSQLRET(0, -1);
return 0;
}
int proc_disconnect_rollback()
{
EXEC SQL ROLLBACK WORK RELEASE;
IFSQLRET(0, -1);
return 0;
}