All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.duckdb.DuckDBParameterMetaData Maven / Gradle / Ivy

There is a newer version: 1.1.3
Show newest version
package org.duckdb;

import java.sql.ParameterMetaData;
import java.sql.SQLException;
import java.sql.SQLFeatureNotSupportedException;

public class DuckDBParameterMetaData implements ParameterMetaData {
    private DuckDBResultSetMetaData meta;

    public DuckDBParameterMetaData(DuckDBResultSetMetaData meta) {
        this.meta = meta;
    }

    @Override
    public  T unwrap(Class iface) throws SQLException {
        return JdbcUtils.unwrap(this, iface);
    }

    @Override
    public boolean isWrapperFor(Class iface) {
        return iface.isInstance(this);
    }

    @Override
    public int getParameterCount() throws SQLException {
        return meta.param_count;
    }

    @Override
    public int isNullable(int param) throws SQLException {
        return ParameterMetaData.parameterNullableUnknown;
    }

    @Override
    public boolean isSigned(int param) throws SQLException {
        return true;
    }

    @Override
    public int getPrecision(int param) throws SQLException {
        throw new SQLFeatureNotSupportedException("getPrecision");
    }

    @Override
    public int getScale(int param) throws SQLException {
        throw new SQLFeatureNotSupportedException("getScale");
    }

    @Override
    public int getParameterType(int param) throws SQLException {
        // TODO Auto-generated method stub
        return 0;
    }

    @Override
    public String getParameterTypeName(int param) throws SQLException {
        // TODO Auto-generated method stub
        return null;
    }

    @Override
    public String getParameterClassName(int param) throws SQLException {
        // TODO Auto-generated method stub
        return null;
    }

    @Override
    public int getParameterMode(int param) throws SQLException {
        return ParameterMetaData.parameterModeIn;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy