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 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.netbeans.lib.ddl.impl;
import java.sql.DatabaseMetaData;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.netbeans.lib.ddl.DriverSpecificationFactory;
public class DriverSpecification {
/** Used DBConnection */
private Map<Integer, String> desc;
private String catalog, schema;
private DatabaseMetaData dmd;
private ResultSet rs;
private String quoteString;
/** Owned factory */
SpecificationFactory factory;
/** Constructor */
public DriverSpecification(Map<Integer, String> description) {
desc = description;
quoteString = null;
}
public DriverSpecificationFactory getDriverSpecificationFactory() {
return factory;
}
public void setDriverSpecificationFactory(DriverSpecificationFactory fac) {
factory = (SpecificationFactory) fac;
}
public void setCatalog(String catalog) {
if (catalog == null || dmd == null) {
this.catalog = catalog;
return;
} else {
catalog = catalog.trim();
}
ResultSet result = null;
List<String> list = new LinkedList<String>();
try {
result = dmd.getCatalogs();
while (result.next()) {
String candidate = result.getString(1);
if(candidate != null) {
list.add(candidate.trim());
}
}
result.close();
} catch (SQLException exc) {
Logger.getLogger("global").log(Level.INFO, null, exc);
this.catalog = null; //hack for IBM ODBC driver
return;
} finally {
try {
if (result != null) {
result.close();
}
} catch (Exception ex) {
}
}
if (list.contains(catalog)) {
this.catalog = catalog;
} else {
this.catalog = null; //hack for Sybase ODBC driver
}
}
public String getCatalog() {
return catalog;
}
public void setSchema(String schema) {
if (schema == null || dmd == null) {
this.schema = schema;
return;
} else {
schema = schema.trim();
}
ResultSet result = null;
List<String> list = new LinkedList<String>();
try {
result = dmd.getSchemas();
while (result.next()) {
String candidate = result.getString(1);
if (candidate != null) {
list.add(candidate.trim());
}
}
} catch (SQLException exc) {
Logger.getLogger("global").log(Level.INFO, null, exc); //NOI18N
this.schema = null; //hack for Access ODBC driver
return;
} finally {
try {
if (result != null) {
result.close();
}
} catch (Exception ex) {
}
}
if (list.contains(schema)) {
this.schema = schema;
} else {
this.schema = null; //hack for Sybase ODBC driver
}
}
public String getSchema() {
return schema;
}
public void setMetaData(DatabaseMetaData dmd) {
this.dmd = dmd;
}
public DatabaseMetaData getMetaData() {
return dmd;
}
public void getTables(String tableNamePattern, String[] types) throws SQLException {
try {
rs = dmd.getTables(catalog, schema, tableNamePattern, types);
} catch (SQLException exc) {
rs = null;
throw exc;
}
}
public void getProcedures(String procedureNamePattern) throws SQLException {
try {
procedureNamePattern = quoteString(procedureNamePattern);
rs = dmd.getProcedures(catalog, schema, procedureNamePattern);
} catch (SQLException exc) {
rs = null;
throw exc;
}
}
public void getPrimaryKeys(String table) throws SQLException {
try {
table = quoteString(table);
rs = dmd.getPrimaryKeys(catalog, schema, table);
} catch (SQLException exc) {
rs = null;
throw exc;
}
}
public void getIndexInfo(String table, boolean unique, boolean approximate) throws SQLException {
try {
table = quoteString(table);
rs = dmd.getIndexInfo(catalog, schema, table, unique, approximate);
} catch (SQLException exc) {
rs = null;
throw exc;
}
}
public void getColumns(String tableNamePattern, String columnNamePattern) throws SQLException {
try {
tableNamePattern = quoteString(tableNamePattern);
columnNamePattern = quoteString(columnNamePattern);
rs = dmd.getColumns(catalog, schema, tableNamePattern, columnNamePattern);
} catch (SQLException exc) {
rs = null;
throw exc;
}
}
public void getProcedureColumns(String procedureNamePattern, String columnNamePattern) throws SQLException {
try {
procedureNamePattern = quoteString(procedureNamePattern);
columnNamePattern = quoteString(columnNamePattern);
rs = dmd.getProcedureColumns(catalog, schema, procedureNamePattern, columnNamePattern);
} catch (SQLException exc) {
rs = null;
throw exc;
}
}
public void getExportedKeys(String table) throws SQLException {
try {
table = quoteString(table);
rs = dmd.getExportedKeys(catalog, schema, table);
} catch (SQLException exc) {
rs = null;
throw exc;
}
}
public void getImportedKeys(String table) throws SQLException {
try {
table = quoteString(table);
rs = dmd.getImportedKeys(catalog, schema, table);
} catch (SQLException exc) {
rs = null;
throw exc;
}
}
public ResultSet getResultSet() {
return rs;
}
public Map<Integer, String> getRow() throws SQLException {
Map<Integer, String> rset = new HashMap<Integer, String>();
String value;
try {
int count = rs.getMetaData().getColumnCount();
for (int i = 1; i <= count; i++) {
value = null;
try {
value = rs.getString(i);
// value = rs.getObject(i); //cannot use getObject() because of problems with MSSQL ODBC driver
} catch (SQLException exc) {
rset = null;
// break;
throw exc;
}
rset.put(new Integer(i), value);
}
} catch (SQLException exc) {
rset = null;
throw exc;
}
return rset;
}
//another patches
public boolean areViewsSupported() {
try {
String productName = dmd.getDatabaseProductName().trim();
if ("PointBase".equals(productName)) { // NOI18N
int driverMajorVersion = dmd.getDriverMajorVersion();
int driverMinorVersion = dmd.getDriverMinorVersion();
return ((driverMajorVersion == 4 && driverMinorVersion >= 1) || driverMajorVersion > 4);
} else if ("MySQL".equals(productName)) { // NOI18N
int databaseMajorVersion = dmd.getDatabaseMajorVersion();
return (databaseMajorVersion >= 5);
} else if ("HypersonicSQL".equals(productName)) { // NOI18N
// XXX is this still true for HypersonicSQL?
return false;
}
} catch(SQLException exc) {
Logger.getLogger("global").log(Level.INFO, null, exc);
}
return true;
}
private String getQuoteString() {
if (quoteString == null) {
try {
quoteString = dmd.getIdentifierQuoteString();
if (quoteString == null || quoteString.equals(" ")) //NOI18N
quoteString = ""; //NOI18N
else
quoteString.trim();
} catch (SQLException exc) {
quoteString = ""; //NOI18N
}
}
return quoteString;
}
private String quoteString(String str) {
try {
if (dmd.getDatabaseProductName().trim().equals("PointBase")) { //NOI18N
//hack for PointBase - DatabaseMetaData methods require quoted arguments for case sensitive identifiers
String quoteStr = getQuoteString();
if (str != null && !str.equals("%") && !quoteStr.isEmpty()) //NOI18N
str = quoteStr + str + quoteStr;
}
} catch (SQLException exc) {
//PENDING
}
return str;
}
public String getDBName() {
try {
return dmd.getDatabaseProductName().trim();
} catch (SQLException exc) {
//PENDING
return null;
}
}
}
|