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

net.snowflake.client.jdbc.SnowflakeResultSetMetaData Maven / Gradle / Ivy

There is a newer version: 3.18.0
Show newest version
package net.snowflake.client.jdbc;

import java.sql.SQLException;
import java.util.List;

public interface SnowflakeResultSetMetaData
{
  String getQueryID() throws SQLException;

  List getColumnNames() throws SQLException;

  int getColumnIndex(String columnName) throws SQLException;

  int getInternalColumnType(int column) throws SQLException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy