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

com.github.housepower.jdbc.wrapper.SQLStruct Maven / Gradle / Ivy

There is a newer version: 2.7.1
Show newest version
package com.github.housepower.jdbc.wrapper;

import java.sql.SQLException;
import java.sql.SQLFeatureNotSupportedException;
import java.sql.Struct;
import java.util.Map;

public class SQLStruct implements Struct {
    @Override
    public String getSQLTypeName() throws SQLException {
        throw new SQLFeatureNotSupportedException();
    }

    @Override
    public Object[] getAttributes() throws SQLException {
        throw new SQLFeatureNotSupportedException();
    }

    @Override
    public Object[] getAttributes(Map> map) throws SQLException {
        throw new SQLFeatureNotSupportedException();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy