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

com.tigergraph.jdbc.common.ParameterMetaData Maven / Gradle / Ivy

package com.tigergraph.jdbc.common;

import java.sql.SQLException;

public abstract class ParameterMetaData implements java.sql.ParameterMetaData {

  /**
   * Methods not implemented yet.
   */

  @Override public int getParameterCount() throws SQLException {
    throw new UnsupportedOperationException("Not implemented yet.");
  }

  @Override public int isNullable(int param) throws SQLException {
    throw new UnsupportedOperationException("Not implemented yet.");
  }

  @Override public boolean isSigned(int param) throws SQLException {
    throw new UnsupportedOperationException("Not implemented yet.");
  }

  @Override public int getPrecision(int param) throws SQLException {
    throw new UnsupportedOperationException("Not implemented yet.");
  }

  @Override public int getScale(int param) throws SQLException {
    throw new UnsupportedOperationException("Not implemented yet.");
  }

  @Override public int getParameterType(int param) throws SQLException {
    throw new UnsupportedOperationException("Not implemented yet.");
  }

  @Override public String getParameterTypeName(int param) throws SQLException {
    throw new UnsupportedOperationException("Not implemented yet.");
  }

  @Override public String getParameterClassName(int param) throws SQLException {
    throw new UnsupportedOperationException("Not implemented yet.");
  }

  @Override public int getParameterMode(int param) throws SQLException {
    throw new UnsupportedOperationException("Not implemented yet.");
  }

  @Override public  T unwrap(Class iface) throws SQLException {
    throw new UnsupportedOperationException("Not implemented yet.");
  }

  @Override public boolean isWrapperFor(Class iface) throws SQLException {
    throw new UnsupportedOperationException("Not implemented yet.");
  }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy