io.vertx.mssqlclient.impl.codec.ColumnData Maven / Gradle / Ivy
/*
* Copyright (c) 2011-2022 Contributors to the Eclipse Foundation
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
* which is available at https://www.apache.org/licenses/LICENSE-2.0.
*
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
*/
package io.vertx.mssqlclient.impl.codec;
import io.vertx.sqlclient.desc.ColumnDescriptor;
import java.sql.JDBCType;
public final class ColumnData implements ColumnDescriptor {
private final String name;
private final DataType dataType;
private final TypeInfo typeInfo;
public ColumnData(String name, DataType dataType, TypeInfo typeInfo) {
this.dataType = dataType;
this.name = name;
this.typeInfo = typeInfo;
}
public DataType dataType() {
return dataType;
}
public TypeInfo typeInfo() {
return typeInfo;
}
@Override
public String name() {
return name;
}
@Override
public boolean isArray() {
return false;
}
@Override
public String typeName() {
return dataType.toString();
}
@Override
public JDBCType jdbcType() {
return dataType.jdbcType(typeInfo);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy