Package net.snowflake.client.jdbc
Interface SnowflakePreparedStatement
-
public interface SnowflakePreparedStatement
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ResultSet
executeAsyncQuery()
Execute a query asynchronouslyString
getQueryID()
void
setBigInteger(int parameterIndex, BigInteger x)
Sets the designated parameter to the given BigInteger value.<T> void
setMap(int parameterIndex, Map<String,T> map, int type)
Sets the designated parameter to the given Map instance.
-
-
-
Method Detail
-
getQueryID
String getQueryID() throws SQLException
- Returns:
- the Snowflake query ID of the latest executed query
- Throws:
SQLException
-
executeAsyncQuery
ResultSet executeAsyncQuery() throws SQLException
Execute a query asynchronously- Returns:
- ResultSet containing results
- Throws:
SQLException
-
setBigInteger
void setBigInteger(int parameterIndex, BigInteger x) throws SQLException
Sets the designated parameter to the given BigInteger value.- Parameters:
parameterIndex
-x
-- Throws:
SQLException
-
setMap
<T> void setMap(int parameterIndex, Map<String,T> map, int type) throws SQLException
Sets the designated parameter to the given Map instance.- Parameters:
parameterIndex
-map
-- Throws:
SQLException
-
-