use of com.axway.ats.core.dbaccess.OracleColumnDescription in project ats-framework by Axway.
the class OracleDbProvider method parseDbRecordAsObject.
@Override
protected DbRecordValue parseDbRecordAsObject(DbColumn dbColumn, ResultSet res, int columnIndex) throws IOException, SQLException {
DbRecordValue recordValue = null;
String type = dbColumn.getColumnType().toLowerCase();
String name = dbColumn.getColumnName().toLowerCase();
OracleColumnDescription columnDescription = new OracleColumnDescription(name, type);
if (columnDescription.isTypeBinary()) {
recordValue = new DbRecordValue(dbColumn, res.getString(columnIndex));
} else {
recordValue = new DbRecordValue(dbColumn, res.getObject(columnIndex));
}
return recordValue;
}
use of com.axway.ats.core.dbaccess.OracleColumnDescription in project ats-framework by Axway.
the class OracleEnvironmentHandler method getColumnsToSelect.
@Override
protected List<ColumnDescription> getColumnsToSelect(DbTable table, String userName) throws DbException, ColumnHasNoDefaultValueException {
// TODO Implementation might be replaced with JDBC DatabaseMetaData.getColumns() but should be verified
// with default column values
// ALL_TAB_COLS - All columns of tables accessible by this user. OWNER restriction is used because user might
// have access to other user's tables and columns
String selectColumnsInfo = "SELECT * FROM ALL_TAB_COLS WHERE TABLE_NAME='" + table.getTableName().toUpperCase() + "' AND OWNER='" + userName.toUpperCase() + "'";
ArrayList<ColumnDescription> columnsToSelect = new ArrayList<ColumnDescription>();
DbRecordValuesList[] columnsMetaData = null;
try {
columnsMetaData = this.dbProvider.select(selectColumnsInfo);
} catch (DbException e) {
log.error("Could not get columns for table " + table.getTableName() + ". You may check if the table exists, if the you are using the right user and it has the right permissions. See more details in the trace.");
throw e;
}
if (columnsMetaData.length == 0) {
throw new DbException("Could not get columns for table " + table.getTableName() + ". You may check if the table exists, if the you are using the right user and it has the right permissions.");
}
for (DbRecordValuesList columnMetaData : columnsMetaData) {
String columnName = (String) columnMetaData.get("COLUMN_NAME");
//check if the column should be skipped in the backup
if (!table.getColumnsToExclude().contains(columnName)) {
ColumnDescription colDescription = new OracleColumnDescription(columnName, (String) columnMetaData.get("DATA_TYPE"));
columnsToSelect.add(colDescription);
} else {
//if this column has no default value, we cannot skip it in the backup
if (columnMetaData.get("DATA_DEFAULT") == null) {
log.error("Cannot skip columns with no default values while creating backup");
throw new ColumnHasNoDefaultValueException(table.getTableName(), columnName);
}
}
}
return columnsToSelect;
}
Aggregations