-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathJDBCUtils.java
249 lines (215 loc) · 6.42 KB
/
JDBCUtils.java
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
/*-------------------------------------------------------------------------
*
* foreign-data wrapper for JDBC
*
* Copyright (c) 2012, PostgreSQL Global Development Group
*
* This software is released under the PostgreSQL Licence
*
* Author: Atri Sharma <[email protected]>
*
* IDENTIFICATION
* jdbc_fdw/JDBCUtils.java
*
*-------------------------------------------------------------------------
*/
import java.sql.*;
import java.text.*;
import java.io.*;
import java.net.URL;
import java.net.URLClassLoader;
import java.net.MalformedURLException;
import java.util.*;
public class JDBCUtils
{
private ResultSet result_set;
private Connection conn;
private int NumberOfColumns;
private int NumberOfRows;
private Statement sql;
private String[] Iterate;
private String iterate_error_message;
private static JDBCDriverLoader JDBC_Driver_Loader;
private StringWriter exception_stack_trace_string_writer;
private PrintWriter exception_stack_trace_print_writer;
/*
* Initialize
* Initiates the connection to the foreign database after setting
* up initial configuration and executes the query.
*/
public String
Initialize(String[] options_array) throws IOException
{
DatabaseMetaData db_metadata;
ResultSetMetaData result_set_metadata;
Properties JDBCProperties;
Class JDBCDriverClass = null;
Driver JDBCDriver = null;
String query = options_array[0];
String DriverClassName = options_array[1];
String url = options_array[2];
String userName = options_array[3];
String password = options_array[4];
int querytimeoutvalue = Integer.parseInt(options_array[5]);
exception_stack_trace_string_writer = new StringWriter();
exception_stack_trace_print_writer = new PrintWriter(exception_stack_trace_string_writer);
NumberOfColumns = 0;
conn = null;
try
{
File JarFile = new File(options_array[6]);
String jarfile_path = JarFile.toURI().toURL().toString();
if (JDBC_Driver_Loader == null)
{
/* If JDBC_Driver_Loader is being
* created. */
JDBC_Driver_Loader = new JDBCDriverLoader(new URL[]{JarFile.toURI().toURL()});
}
else if (JDBC_Driver_Loader.CheckIfClassIsLoaded(DriverClassName) == null)
{
JDBC_Driver_Loader.addPath(jarfile_path);
}
JDBCDriverClass = JDBC_Driver_Loader.loadClass(DriverClassName);
JDBCDriver = (Driver)JDBCDriverClass.newInstance();
JDBCProperties = new Properties();
JDBCProperties.put("user", userName);
JDBCProperties.put("password", password);
conn = JDBCDriver.connect(url, JDBCProperties);
db_metadata = conn.getMetaData();
sql = conn.createStatement(ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_READ_ONLY);
try
{
if (querytimeoutvalue != 0)
{
sql.setQueryTimeout(querytimeoutvalue);
}
}
catch(Exception setquerytimeout_exception)
{
/* If an exception occurs,it is returned back to the
* calling C code by returning a Java String object
* that has the exception's stack trace.
* If all goes well,a null String is returned. */
setquerytimeout_exception.printStackTrace(exception_stack_trace_print_writer);
return (new String(exception_stack_trace_string_writer.toString()));
}
result_set = sql.executeQuery(query);
result_set_metadata = result_set.getMetaData();
NumberOfColumns = result_set_metadata.getColumnCount();
Iterate = new String[NumberOfColumns];
}
catch (Throwable initialize_exception)
{
/* If an exception occurs,it is returned back to the
* calling C code by returning a Java String object
* that has the exception's stack trace.
* If all goes well,a null String is returned. */
initialize_exception.printStackTrace(exception_stack_trace_print_writer);
return (new String(exception_stack_trace_string_writer.toString()));
}
return null;
}
/*
* ReturnResultSet
* Returns the result set that is returned from the foreign database
* after execution of the query to C code.
*/
public String[]
ReturnResultSet()
{
iterate_error_message = null;
int i = 0;
try
{
/* Row-by-row processing is done in jdbc_fdw.One row
* at a time is returned to the C code. */
if (result_set.next())
{
for (i = 0; i < NumberOfColumns; i++)
{
Iterate[i] = result_set.getString(i+1);
}
++NumberOfRows;
/* The current row in result_set is returned
* to the C code in a Java String array that
* has the value of the fields of the current
* row as it values. */
return (Iterate);
}
}
catch (Exception returnresultset_exception)
{
returnresultset_exception.printStackTrace(exception_stack_trace_print_writer);
iterate_error_message = new String(exception_stack_trace_string_writer.toString());
}
/* All of result_set's rows have been returned to the C code. */
return null;
}
/*
* ReturnResultSetErrorMessage
* Returns any error resulting from iterating the result set.
* Call after ReturnResultSet returns null to determine if an
* error occurred or all results have been read.
*/
public String
ReturnResultSetErrorMessage()
{
return iterate_error_message;
}
/*
* Close
* Releases the resources used.
*/
public String
Close()
{
try
{
if (result_set != null)
{
result_set.close();
}
if (conn != null)
{
conn.close();
}
result_set = null;
conn = null;
Iterate = null;
}
catch (Exception close_exception)
{
/* If an exception occurs,it is returned back to the
* calling C code by returning a Java String object
* that has the exception's stack trace.
* If all goes well,a null String is returned. */
close_exception.printStackTrace(exception_stack_trace_print_writer);
return (new String(exception_stack_trace_string_writer.toString()));
}
return null;
}
/*
* Cancel
* Cancels the query and releases the resources in case query
* cancellation is requested by the user.
*/
public String
Cancel()
{
try
{
result_set.close();
conn.close();
}
catch(Exception cancel_exception)
{
/* If an exception occurs,it is returned back to the
* calling C code by returning a Java String object
* that has the exception's stack trace.
* If all goes well,a null String is returned. */
cancel_exception.printStackTrace(exception_stack_trace_print_writer);
return (new String(exception_stack_trace_string_writer.toString()));
}
return null;
}
}