![JAR search and dependency download from the Maven repository](/logo.png)
io.vertx.db2client.impl.codec.DB2RowDesc Maven / Gradle / Ivy
/*
* Copyright (C) 2019,2020 IBM Corporation
*
* Licensed 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 io.vertx.db2client.impl.codec;
import io.vertx.db2client.impl.drda.ColumnMetaData;
import io.vertx.sqlclient.internal.RowDesc;
import java.sql.JDBCType;
import java.util.List;
class DB2RowDesc extends RowDesc {
private final ColumnMetaData columnMetaData;
private DB2RowDesc(DB2ColumnDesc[] columnDescs, ColumnMetaData columnMetaData) {
super(columnDescs);
this.columnMetaData = columnMetaData;
}
ColumnMetaData columnDefinitions() {
return columnMetaData;
}
static DB2RowDesc create(ColumnMetaData md) {
List names = md.getColumnNames();
List types = md.getJdbcTypes();
DB2ColumnDesc[] columns = new DB2ColumnDesc[names.size()];
for (int i = 0; i < columns.length; i++) {
columns[i] = new DB2ColumnDesc(names.get(i), types.get(i));
}
return new DB2RowDesc(columns, md);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy