Class JdbcPreparedStatement

  • TheJdbcPreparedStatement class in Apps Script facilitates interaction with SQL databases using prepared statements, mirroring Java JDBC API functionality.

  • Key methods are available for batch operations, statement execution, setting parameters, retrieving information, and managing the statement itself.

  • Numerousset methods are provided to configure parameters for the prepared statement at specific indices, supporting various data types.

  • Statement properties can be configured using methods likesetCursorName,setFetchDirection,setMaxRows, andsetQueryTimeout.

  • Most methods require authorization with thehttps://www.googleapis.com/auth/script.external_request scope.

JdbcPreparedStatement

A JDBCPreparedStatement. For documentation of this class, seejava.sql.PreparedStatement.

Methods

MethodReturn typeBrief description
addBatch()voidFor documentation of this method, seejava.sql.PreparedStatement#addBatch().
addBatch(sql)voidFor documentation of this method, seejava.sql.Statement#addBatch(String).
cancel()voidFor documentation of this method, seejava.sql.Statement#cancel().
clearBatch()voidFor documentation of this method, seejava.sql.Statement#clearBatch().
clearParameters()voidFor documentation of this method, seejava.sql.PreparedStatement#clearParameters().
clearWarnings()voidFor documentation of this method, seejava.sql.Statement#clearWarnings().
close()voidFor documentation of this method, seejava.sql.Statement#close().
execute()BooleanFor documentation of this method, seejava.sql.PreparedStatement#execute().
execute(sql)BooleanFor documentation of this method, seejava.sql.Statement#execute(String).
execute(sql, autoGeneratedKeys)BooleanFor documentation of this method, seejava.sql.Statement#execute(String, int).
execute(sql, columnIndexes)BooleanFor documentation of this method, seejava.sql.Statement#execute(String, int[]).
execute(sql, columnNames)BooleanFor documentation of this method, seejava.sql.Statement#execute(String, String[]).
executeBatch()Integer[]For documentation of this method, seejava.sql.Statement#executeBatch().
executeBatch(parameters)Integer[]Submits a batch of commands to the database for execution and if all commands executesuccessfully, returns an array of update counts.
executeQuery()JdbcResultSetFor documentation of this method, seejava.sql.PreparedStatement#executeQuery().
executeQuery(sql)JdbcResultSetFor documentation of this method, seejava.sql.Statement#executeQuery(String).
executeUpdate()IntegerFor documentation of this method, seejava.sql.PreparedStatement#executeUpdate().
executeUpdate(sql)IntegerFor documentation of this method, seejava.sql.Statement#executeUpdate(String).
executeUpdate(sql, autoGeneratedKeys)IntegerFor documentation of this method, seejava.sql.Statement#executeUpdate(String, int).
executeUpdate(sql, columnIndexes)IntegerFor documentation of this method, seejava.sql.Statement#executeUpdate(String, int[]).
executeUpdate(sql, columnNames)IntegerFor documentation of this method, seejava.sql.Statement#executeUpdate(String, String[]).
getConnection()JdbcConnectionFor documentation of this method, seejava.sql.Statement#getConnection().
getFetchDirection()IntegerFor documentation of this method, seejava.sql.Statement#getFetchDirection().
getFetchSize()IntegerFor documentation of this method, seejava.sql.Statement#getFetchSize().
getGeneratedKeys()JdbcResultSetFor documentation of this method, seejava.sql.Statement#getGeneratedKeys().
getMaxFieldSize()IntegerFor documentation of this method, seejava.sql.Statement#getMaxFieldSize().
getMaxRows()IntegerFor documentation of this method, seejava.sql.Statement#getMaxRows().
getMetaData()JdbcResultSetMetaDataFor documentation of this method, seejava.sql.PreparedStatement#getMetaData().
getMoreResults()BooleanFor documentation of this method, seejava.sql.Statement#getMoreResults().
getMoreResults(current)BooleanFor documentation of this method, seejava.sql.Statement#getMoreResults(int).
getParameterMetaData()JdbcParameterMetaDataFor documentation of this method, seejava.sql.PreparedStatement#getParameterMetaData().
getQueryTimeout()IntegerFor documentation of this method, seejava.sql.Statement#getQueryTimeout().
getResultSet()JdbcResultSetFor documentation of this method, seejava.sql.Statement#getResultSet().
getResultSetConcurrency()IntegerFor documentation of this method, seejava.sql.Statement#getResultSetConcurrency().
getResultSetHoldability()IntegerFor documentation of this method, seejava.sql.Statement#getResultSetHoldability().
getResultSetType()IntegerFor documentation of this method, seejava.sql.Statement#getResultSetType().
getUpdateCount()IntegerFor documentation of this method, seejava.sql.Statement#getUpdateCount().
getWarnings()String[]For documentation of this method, seejava.sql.Statement#getWarnings().
isClosed()BooleanFor documentation of this method, seejava.sql.Statement#isClosed().
isPoolable()BooleanFor documentation of this method, seejava.sql.Statement#isPoolable().
setArray(parameterIndex, x)voidFor documentation of this method, seejava.sql.PreparedStatement#setArray(int, Array).
setBigDecimal(parameterIndex, x)voidFor documentation of this method, seejava.sql.PreparedStatement#setBigDecimal(int, BigDecimal).
setBlob(parameterIndex, x)voidFor documentation of this method, seejava.sql.PreparedStatement#setBlob(int, Clob).
setBoolean(parameterIndex, x)voidFor documentation of this method, seejava.sql.PreparedStatement#setBoolean(int, boolean).
setByte(parameterIndex, x)voidFor documentation of this method, seejava.sql.PreparedStatement#setByte(int, byte).
setBytes(parameterIndex, x)voidFor documentation of this method, seejava.sql.PreparedStatement#setBytes(int, byte[]).
setClob(parameterIndex, x)voidFor documentation of this method, seejava.sql.PreparedStatement#setClob(int, Clob).
setCursorName(name)voidFor documentation of this method, seejava.sql.Statement#setCursorName(String).
setDate(parameterIndex, x)voidFor documentation of this method, seejava.sql.PreparedStatement#setDate(int, Date).
setDate(parameterIndex, x, timeZone)voidFor documentation of this method, seejava.sql.PreparedStatement#setDate(int, Date, Calendar).
setDouble(parameterIndex, x)voidFor documentation of this method, seejava.sql.PreparedStatement#setDouble(int, double).
setEscapeProcessing(enable)voidFor documentation of this method, seejava.sql.Statement#setEscapeProcessing(boolean).
setFetchDirection(direction)voidFor documentation of this method, seejava.sql.Statement#setFetchDirection(int).
setFetchSize(rows)voidFor documentation of this method, seejava.sql.Statement#setFetchSize(int).
setFloat(parameterIndex, x)voidFor documentation of this method, seejava.sql.PreparedStatement#setFloat(int, float).
setInt(parameterIndex, x)voidFor documentation of this method, seejava.sql.PreparedStatement#setInt(int, int).
setLong(parameterIndex, x)voidFor documentation of this method, seejava.sql.PreparedStatement#setLong(int, long).
setMaxFieldSize(max)voidFor documentation of this method, seejava.sql.Statement#setMaxFieldSize(int).
setMaxRows(max)voidFor documentation of this method, seejava.sql.Statement#setMaxRows(int).
setNClob(parameterIndex, x)voidFor documentation of this method, seejava.sql.PreparedStatement#setNClob(int, NClob).
setNString(parameterIndex, x)voidFor documentation of this method, seejava.sql.PreparedStatement#setNString(int, String).
setNull(parameterIndex, sqlType)voidFor documentation of this method, seejava.sql.PreparedStatement#setNull(int, int).
setNull(parameterIndex, sqlType, typeName)voidFor documentation of this method, seejava.sql.PreparedStatement#setNull(int, int, String).
setObject(index, x)voidFor documentation of this method, seejava.sql.PreparedStatement#setObject(int, Object).
setObject(parameterIndex, x, targetSqlType)voidFor documentation of this method, seejava.sql.PreparedStatement#setObject(int, Object, int).
setObject(parameterIndex, x, targetSqlType, scaleOrLength)voidFor documentation of this method, seejava.sql.PreparedStatement#setObject(int, Object, int, int).
setPoolable(poolable)voidFor documentation of this method, seejava.sql.Statement#setPoolable(boolean).
setQueryTimeout(seconds)voidFor documentation of this method, seejava.sql.Statement#setQueryTimeout(int).
setRef(parameterIndex, x)voidFor documentation of this method, seejava.sql.PreparedStatement#setRef(int, Ref).
setRowId(parameterIndex, x)voidFor documentation of this method, seejava.sql.PreparedStatement#setRowId(int, RowId).
setSQLXML(parameterIndex, x)voidFor documentation of this method, seejava.sql.PreparedStatement#setSQLXML(int, SQLXML).
setShort(parameterIndex, x)voidFor documentation of this method, seejava.sql.PreparedStatement#setShort(int, short).
setString(parameterIndex, x)voidFor documentation of this method, seejava.sql.PreparedStatement#setString(int, String).
setTime(parameterIndex, x)voidFor documentation of this method, seejava.sql.PreparedStatement#setTime(int, Time).
setTime(parameterIndex, x, timeZone)voidFor documentation of this method, seejava.sql.PreparedStatement#setTime(int, Time, Calendar).
setTimestamp(parameterIndex, x)voidFor documentation of this method, seejava.sql.PreparedStatement#setTimestamp(int, Timestamp).
setTimestamp(parameterIndex, x, timeZone)voidFor documentation of this method, seejava.sql.PreparedStatement#setTimestamp(int, Timestamp, Calendar).
setURL(parameterIndex, x)voidFor documentation of this method, seejava.sql.PreparedStatement#setURL(int, URL).

Detailed documentation

addBatch()

For documentation of this method, seejava.sql.PreparedStatement#addBatch().

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

addBatch(sql)

For documentation of this method, seejava.sql.Statement#addBatch(String).

Parameters

NameTypeDescription
sqlStringThe SQL command to add to this statement, typically an SQLINSERT orUPDATE.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

cancel()

For documentation of this method, seejava.sql.Statement#cancel().

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

clearBatch()

For documentation of this method, seejava.sql.Statement#clearBatch().

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

clearParameters()

For documentation of this method, seejava.sql.PreparedStatement#clearParameters().

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

clearWarnings()

For documentation of this method, seejava.sql.Statement#clearWarnings().

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

close()

For documentation of this method, seejava.sql.Statement#close().


execute()

For documentation of this method, seejava.sql.PreparedStatement#execute().

Return

Booleantrue if the first result is a result set;false if the first result is an update count or there is no result.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

execute(sql)

For documentation of this method, seejava.sql.Statement#execute(String).

Parameters

NameTypeDescription
sqlStringThe SQL statement to execute.

Return

Booleantrue if the first result is a result set;false if it is an update count or if there are no results.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

execute(sql, autoGeneratedKeys)

For documentation of this method, seejava.sql.Statement#execute(String, int).

Parameters

NameTypeDescription
sqlStringThe SQL statement to execute.
autoGeneratedKeysIntegerA flag that indicates whether auto-generated keys are made available for future retrieval; eitherJdbc.Statement.RETURN_GENERATED_KEYS orJdbc.Statement.NO_GENERATED_KEYS.

Return

Booleantrue if the first result is a result set;false if it is an update count or if there are no results.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

execute(sql, columnIndexes)

For documentation of this method, seejava.sql.Statement#execute(String, int[]).

Parameters

NameTypeDescription
sqlStringThe SQL statement to execute.
columnIndexesInteger[]The column indices in the whose auto-generated keys are made available for future retrieval.

Return

Booleantrue if the first result is a result set;false if it is an update count or if there are no results.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

execute(sql, columnNames)

For documentation of this method, seejava.sql.Statement#execute(String, String[]).

Parameters

NameTypeDescription
sqlStringThe SQL statement to execute.
columnNamesString[]The names of columns in the whose auto-generated keys are made available for future retrieval.

Return

Booleantrue if the first result is a result set;false if it is an update count or if there are no results.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

executeBatch()

For documentation of this method, seejava.sql.Statement#executeBatch().

Return

Integer[] — The update counts for each command in the batch, using the same order in which commands were added to the batch.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

executeBatch(parameters)

Submits a batch of commands to the database for execution and if all commands executesuccessfully, returns an array of update counts. The parameters argument is a 2D array, whereeach inner array contains the parameters for a single execution of the statement. For example,if you have a statement like "INSERT INTO employees (name, age) VALUES (?, ?)", the parameterscould be[["John Doe", 30], ["John Smith", 25]].

The following example inserts multiple rows into a database using batching:

varconn=Jdbc.getCloudSqlConnection("jdbc:google:mysql://...");varstmt=conn.prepareStatement("INSERT INTO employees (name, age) VALUES (?, ?)");varparams=[["John Doe",30],["John Smith",25]];stmt.executeBatch(params);

Parameters

NameTypeDescription
parametersObject[][]A 2D array of Objects representing the parameters for each batch.

Return

Integer[] — An array of update counts containing one element for each command in the batch.

Throws

Error — if a database access error occurs.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

executeQuery()

For documentation of this method, seejava.sql.PreparedStatement#executeQuery().

Return

JdbcResultSet — A result set that contains the data produced by the query.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

executeQuery(sql)

For documentation of this method, seejava.sql.Statement#executeQuery(String).

Parameters

NameTypeDescription
sqlStringThe SQL statement to execute, typically a staticSELECT.

Return

JdbcResultSet — A result set containing the results of the execution. This is nevernull.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

executeUpdate()

For documentation of this method, seejava.sql.PreparedStatement#executeUpdate().

Return

Integer — The row count ofr SQL Data Manipulation Language statements, or 0 for SQL statements that return nothing.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

executeUpdate(sql)

For documentation of this method, seejava.sql.Statement#executeUpdate(String).

Parameters

NameTypeDescription
sqlStringThe SQL Data Manipulation Language statement to execute (such asINSERT,UPDATE, orDELETE), or else a statement that returns nothing (such as a DDL statement).

Return

Integer — Either the row count for for Data Manipulation Language statements, or 0 for statements that return nothing.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

executeUpdate(sql, autoGeneratedKeys)

For documentation of this method, seejava.sql.Statement#executeUpdate(String, int).

Parameters

NameTypeDescription
sqlStringThe SQL Data Manipulation Language statement to execute (such asINSERT,UPDATE, orDELETE), or else a statement that returns nothing (such as a DDL statement).
autoGeneratedKeysIntegerA flag that indicates whether auto-generated keys are made available for future retrieval; eitherJdbc.Statement.RETURN_GENERATED_KEYS orJdbc.Statement.NO_GENERATED_KEYS.

Return

Integer — Either the row count for for Data Manipulation Language statements, or 0 for statements that return nothing.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

executeUpdate(sql, columnIndexes)

For documentation of this method, seejava.sql.Statement#executeUpdate(String, int[]).

Parameters

NameTypeDescription
sqlStringThe SQL Data Manipulation Language statement to execute (such asINSERT,UPDATE, orDELETE), or else a statement that returns nothing (such as a DDL statement).
columnIndexesInteger[]The column indices in the whose auto-generated keys are made available for future retrieval.

Return

Integer — Either the row count for for Data Manipulation Language statements, or 0 for statements that return nothing.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

executeUpdate(sql, columnNames)

For documentation of this method, seejava.sql.Statement#executeUpdate(String, String[]).

Parameters

NameTypeDescription
sqlStringThe SQL Data Manipulation Language statement to execute (such asINSERT,UPDATE, orDELETE), or else a statement that returns nothing (such as a DDL statement).
columnNamesString[]The names of columns in the whose auto-generated keys are made available for future retrieval.

Return

Integer — Either the row count for for Data Manipulation Language statements, or 0 for statements that return nothing.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

getConnection()

For documentation of this method, seejava.sql.Statement#getConnection().

Return

JdbcConnection — The connection that produced this statement.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

getFetchDirection()

For documentation of this method, seejava.sql.Statement#getFetchDirection().

Return

Integer — The default direction for result sets generated by this statement, which is eitherJdbc.ResultSet.FETCH_FORWARD orJdbc.ResultSet.FETCH_REVERSE.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

getFetchSize()

For documentation of this method, seejava.sql.Statement#getFetchSize().

Return

Integer — The default row fetch size for result sets generated from this statement.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

getGeneratedKeys()

For documentation of this method, seejava.sql.Statement#getGeneratedKeys().

Return

JdbcResultSet — A result set containing the auto-generated keys generated by the execution of this statement.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

getMaxFieldSize()

For documentation of this method, seejava.sql.Statement#getMaxFieldSize().

Return

Integer — The current column byte size limit for columns storing character and binary values; a value of zero indictates no limit.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

getMaxRows()

For documentation of this method, seejava.sql.Statement#getMaxRows().

Return

Integer — The current maximum number of rows for a result set produced by this statement; a value of 0 indicates no limit.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

getMetaData()

For documentation of this method, seejava.sql.PreparedStatement#getMetaData().

Return

JdbcResultSetMetaData — The description of a result set's columns, orNULL if this metadata is unavailable.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

getMoreResults()

For documentation of this method, seejava.sql.Statement#getMoreResults().

Return

Booleantrue if the next result is a result set;false otherwise.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

getMoreResults(current)

For documentation of this method, seejava.sql.Statement#getMoreResults(int).

Parameters

NameTypeDescription
currentIntegerA flag that indicates what happens to current result sets when retrieved. This value is one ofJdbc.Statement.CLOSE_CURRENT_RESULT,Jdbc.Statement.KEEP_CURRENT_RESULT, orJdbc.Statement.CLOSE_ALL_RESULTS.

Return

Booleantrue if the next result is a result set;false otherwise.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

getParameterMetaData()

For documentation of this method, seejava.sql.PreparedStatement#getParameterMetaData().

Return

JdbcParameterMetaData — The parameter metadata, including the number, types, and properties for each parameter.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

getQueryTimeout()

For documentation of this method, seejava.sql.Statement#getQueryTimeout().

Return

Integer — The current query timeout in seconds; a value of zero indicates no timeout.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

getResultSet()

For documentation of this method, seejava.sql.Statement#getResultSet().

Return

JdbcResultSet — The current result set, ornull if the result is an update count or there are no more results.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

getResultSetConcurrency()

For documentation of this method, seejava.sql.Statement#getResultSetConcurrency().

Return

Integer — The result set concurrency for result sets generated from this statement, which is eitherJdbc.ResultSet.CONCUR_READ_ONLY orJdbc.ResultSet.CONCUR_UPDATABLE.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

getResultSetHoldability()

For documentation of this method, seejava.sql.Statement#getResultSetHoldability().

Return

Integer — The result set holdability, which is eitherJdbc.ResultSet.HOLD_CURSORS_OVER_COMMIT orJdbc.ResultSet.CLOSE_CURSORS_AT_COMMIT.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

getResultSetType()

For documentation of this method, seejava.sql.Statement#getResultSetType().

Return

Integer — The result set type for result sets generated from this statement, which isJdbc.ResultSet.TYPE_FORWARD_ONLY,Jdbc.ResultSet.TYPE_SCROLL_INSENSITIVE, orJdbc.ResultSet.TYPE_SCROLL_INSENSITIVE.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

getUpdateCount()

For documentation of this method, seejava.sql.Statement#getUpdateCount().

Return

Integer — The current result as an update count, or -1 if the current result is a result set or if there are no more results.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

getWarnings()

For documentation of this method, seejava.sql.Statement#getWarnings().

Return

String[] — The current set of warnings, ornull if there are no warnings.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

isClosed()

For documentation of this method, seejava.sql.Statement#isClosed().

Return

Booleantrue if this statement is closed;false otherwise.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

isPoolable()

For documentation of this method, seejava.sql.Statement#isPoolable().

Return

Booleantrue if this statement is poolable;false otherwise.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setArray(parameterIndex, x)

For documentation of this method, seejava.sql.PreparedStatement#setArray(int, Array).

Parameters

NameTypeDescription
parameterIndexIntegerThe index of the parameter to set (the first parameter is 1, the second is 2, and so on).
xJdbcArrayThe parameter value to set.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setBigDecimal(parameterIndex, x)

For documentation of this method, seejava.sql.PreparedStatement#setBigDecimal(int, BigDecimal).

Parameters

NameTypeDescription
parameterIndexIntegerThe index of the parameter to set (the first parameter is 1, the second is 2, and so on).
xBigNumberThe parameter value to set.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setBlob(parameterIndex, x)

For documentation of this method, seejava.sql.PreparedStatement#setBlob(int, Clob).

Parameters

NameTypeDescription
parameterIndexIntegerThe index of the parameter to set (the first parameter is 1, the second is 2, and so on).
xJdbcBlobThe parameter value to set.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setBoolean(parameterIndex, x)

For documentation of this method, seejava.sql.PreparedStatement#setBoolean(int, boolean).

Parameters

NameTypeDescription
parameterIndexIntegerThe index of the parameter to set (the first parameter is 1, the second is 2, and so on).
xBooleanThe parameter value to set.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setByte(parameterIndex, x)

For documentation of this method, seejava.sql.PreparedStatement#setByte(int, byte).

Parameters

NameTypeDescription
parameterIndexIntegerThe index of the parameter to set (the first parameter is 1, the second is 2, and so on).
xByteThe parameter value to set.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setBytes(parameterIndex, x)

For documentation of this method, seejava.sql.PreparedStatement#setBytes(int, byte[]).

Parameters

NameTypeDescription
parameterIndexIntegerThe index of the parameter to set (the first parameter is 1, the second is 2, and so on).
xByte[]The parameter value to set.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setClob(parameterIndex, x)

For documentation of this method, seejava.sql.PreparedStatement#setClob(int, Clob).

Parameters

NameTypeDescription
parameterIndexIntegerThe index of the parameter to set (the first parameter is 1, the second is 2, and so on).
xJdbcClobThe parameter value to set.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setCursorName(name)

For documentation of this method, seejava.sql.Statement#setCursorName(String).

Parameters

NameTypeDescription
nameStringThe new cursor name, which must be unique within a connection.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setDate(parameterIndex, x)

For documentation of this method, seejava.sql.PreparedStatement#setDate(int, Date).

Parameters

NameTypeDescription
parameterIndexIntegerThe index of the parameter to set (the first parameter is 1, the second is 2, and so on).
xJdbcDateThe parameter value to set.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setDate(parameterIndex, x, timeZone)

For documentation of this method, seejava.sql.PreparedStatement#setDate(int, Date, Calendar).

Parameters

NameTypeDescription
parameterIndexIntegerThe index of the parameter to set (the first parameter is 1, the second is 2, and so on).
xJdbcDateThe parameter value to set.
timeZoneStringA time zone string used to construct java.lang.Calendar instance, which in turn is used to build the date. Several formats of time zone strings are recognized: short IDs (such asPST,EST, andGMT), long IDs (such asUS/Pacific andAmerica/Los_Angeles), and offsets (such asGMT+6:30).

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setDouble(parameterIndex, x)

For documentation of this method, seejava.sql.PreparedStatement#setDouble(int, double).

Parameters

NameTypeDescription
parameterIndexIntegerThe index of the parameter to set (the first parameter is 1, the second is 2, and so on).
xNumberThe parameter value to set.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setEscapeProcessing(enable)

For documentation of this method, seejava.sql.Statement#setEscapeProcessing(boolean).

Parameters

NameTypeDescription
enableBooleanIftrue, escape processing is enabled; otherwise it is disabled.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setFetchDirection(direction)

For documentation of this method, seejava.sql.Statement#setFetchDirection(int).

Parameters

NameTypeDescription
directionIntegerThe specified direction to set, which is eitherJdbc.ResultSet.FETCH_FORWARD orJdbc.ResultSet.FETCH_REVERSE.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setFetchSize(rows)

For documentation of this method, seejava.sql.Statement#setFetchSize(int).

Parameters

NameTypeDescription
rowsIntegerThe number of rows to fetch.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setFloat(parameterIndex, x)

For documentation of this method, seejava.sql.PreparedStatement#setFloat(int, float).

Parameters

NameTypeDescription
parameterIndexIntegerThe index of the parameter to set (the first parameter is 1, the second is 2, and so on).
xNumberThe parameter value to set.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setInt(parameterIndex, x)

For documentation of this method, seejava.sql.PreparedStatement#setInt(int, int).

Parameters

NameTypeDescription
parameterIndexIntegerThe index of the parameter to set (the first parameter is 1, the second is 2, and so on).
xIntegerThe parameter value to set.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setLong(parameterIndex, x)

For documentation of this method, seejava.sql.PreparedStatement#setLong(int, long).

Parameters

NameTypeDescription
parameterIndexIntegerThe index of the parameter to set (the first parameter is 1, the second is 2, and so on).
xIntegerThe parameter value to set.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setMaxFieldSize(max)

For documentation of this method, seejava.sql.Statement#setMaxFieldSize(int).

Parameters

NameTypeDescription
maxIntegerThe new column byte size limit; a value of zero indicates no limit.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setMaxRows(max)

For documentation of this method, seejava.sql.Statement#setMaxRows(int).

Parameters

NameTypeDescription
maxIntegerThe maximum number of rows a result set generated by this statement can have. A value of 0 indicates no limit.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setNClob(parameterIndex, x)

For documentation of this method, seejava.sql.PreparedStatement#setNClob(int, NClob).

Parameters

NameTypeDescription
parameterIndexIntegerThe index of the parameter to set (the first parameter is 1, the second is 2, and so on).
xJdbcClobThe parameter value to set.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setNString(parameterIndex, x)

For documentation of this method, seejava.sql.PreparedStatement#setNString(int, String).

Parameters

NameTypeDescription
parameterIndexIntegerThe index of the parameter to set (the first parameter is 1, the second is 2, and so on).
xStringThe parameter value to set.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setNull(parameterIndex, sqlType)

For documentation of this method, seejava.sql.PreparedStatement#setNull(int, int).

Parameters

NameTypeDescription
parameterIndexIntegerThe index of the parameter to set (the first parameter is 1, the second is 2, and so on).
sqlTypeIntegerTheSQL type of the specified parameter.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setNull(parameterIndex, sqlType, typeName)

For documentation of this method, seejava.sql.PreparedStatement#setNull(int, int, String).

Parameters

NameTypeDescription
parameterIndexIntegerThe index of the parameter to set (the first parameter is 1, the second is 2, and so on).
sqlTypeIntegerTheSQL type of the specified parameter.
typeNameStringThe fully-qualifed name of an SQL user-defined type. Ignored if the parameter isn't a user-defined type orREF.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setObject(index, x)

For documentation of this method, seejava.sql.PreparedStatement#setObject(int, Object).

Parameters

NameTypeDescription
indexIntegerThe index of the parameter to set (the first parameter is 1, the second is 2, and so on).
xObjectThe object containing the value to set the parameter to.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setObject(parameterIndex, x, targetSqlType)

For documentation of this method, seejava.sql.PreparedStatement#setObject(int, Object, int).

Parameters

NameTypeDescription
parameterIndexIntegerThe index of the parameter to set (the first parameter is 1, the second is 2, and so on).
xObjectThe object containing the value to set the parameter to.
targetSqlTypeIntegerTheSQL type to send to the database.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setObject(parameterIndex, x, targetSqlType, scaleOrLength)

For documentation of this method, seejava.sql.PreparedStatement#setObject(int, Object, int, int).

Parameters

NameTypeDescription
parameterIndexIntegerThe index of the parameter to set (the first parameter is 1, the second is 2, and so on).
xObjectThe object containing the value to set the parameter to.
targetSqlTypeIntegerTheSQL type to send to the database. The scale argument may further qualify this type.
scaleOrLengthIntegerThe number of digits after the decimal forDECIMAL orNUMERIC types, or the length of data forInputStream orReader types. Ignored for all other types.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setPoolable(poolable)

For documentation of this method, seejava.sql.Statement#setPoolable(boolean).

Parameters

NameTypeDescription
poolableBooleanIftrue, requests that this statement be pooled; otherwise requests it not be pooled.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setQueryTimeout(seconds)

For documentation of this method, seejava.sql.Statement#setQueryTimeout(int).

Parameters

NameTypeDescription
secondsIntegerThe new query timeout in seconds; a value of 0 indicates no timeout.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setRef(parameterIndex, x)

For documentation of this method, seejava.sql.PreparedStatement#setRef(int, Ref).

Parameters

NameTypeDescription
parameterIndexIntegerThe index of the parameter to set (the first parameter is 1, the second is 2, and so on).
xJdbcRefThe SQLREF value to set.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setRowId(parameterIndex, x)

For documentation of this method, seejava.sql.PreparedStatement#setRowId(int, RowId).

Parameters

NameTypeDescription
parameterIndexIntegerThe index of the parameter to set (the first parameter is 1, the second is 2, and so on).
xJdbcRowIdThe parameter value to set.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setSQLXML(parameterIndex, x)

For documentation of this method, seejava.sql.PreparedStatement#setSQLXML(int, SQLXML).

Parameters

NameTypeDescription
parameterIndexIntegerThe index of the parameter to set (the first parameter is 1, the second is 2, and so on).
xJdbcSQLXMLThe parameter value to set.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setShort(parameterIndex, x)

For documentation of this method, seejava.sql.PreparedStatement#setShort(int, short).

Parameters

NameTypeDescription
parameterIndexIntegerThe index of the parameter to set (the first parameter is 1, the second is 2, and so on).
xIntegerThe parameter value to set.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setString(parameterIndex, x)

For documentation of this method, seejava.sql.PreparedStatement#setString(int, String).

Parameters

NameTypeDescription
parameterIndexIntegerThe index of the parameter to set (the first parameter is 1, the second is 2, and so on).
xStringThe parameter value to set.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setTime(parameterIndex, x)

For documentation of this method, seejava.sql.PreparedStatement#setTime(int, Time).

Parameters

NameTypeDescription
parameterIndexIntegerThe index of the parameter to set (the first parameter is 1, the second is 2, and so on).
xJdbcTimeThe parameter value to set.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setTime(parameterIndex, x, timeZone)

For documentation of this method, seejava.sql.PreparedStatement#setTime(int, Time, Calendar).

Parameters

NameTypeDescription
parameterIndexIntegerThe index of the parameter to set (the first parameter is 1, the second is 2, and so on).
xJdbcTimeThe parameter value to set.
timeZoneStringA time zone string used to construct java.lang.Calendar instance, which in turn is used to build the date. Several formats of time zone strings are recognized: short IDs (such asPST,EST, andGMT), long IDs (such asUS/Pacific andAmerica/Los_Angeles), and offsets (such asGMT+6:30).

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setTimestamp(parameterIndex, x)

For documentation of this method, seejava.sql.PreparedStatement#setTimestamp(int, Timestamp).

Parameters

NameTypeDescription
parameterIndexIntegerThe index of the parameter to set (the first parameter is 1, the second is 2, and so on).
xJdbcTimestampThe parameter value to set.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setTimestamp(parameterIndex, x, timeZone)

For documentation of this method, seejava.sql.PreparedStatement#setTimestamp(int, Timestamp, Calendar).

Parameters

NameTypeDescription
parameterIndexIntegerThe index of the parameter to set (the first parameter is 1, the second is 2, and so on).
xJdbcTimestampThe parameter value to set.
timeZoneStringA time zone string used to construct java.lang.Calendar instance, which in turn is used to build the date. Several formats of time zone strings are recognized: short IDs (such asPST,EST, andGMT), long IDs (such asUS/Pacific andAmerica/Los_Angeles), and offsets (such asGMT+6:30).

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

setURL(parameterIndex, x)

For documentation of this method, seejava.sql.PreparedStatement#setURL(int, URL).

Parameters

NameTypeDescription
parameterIndexIntegerThe index of the parameter to set (the first parameter is 1, the second is 2, and so on).
xStringThe parameter value to set.

Authorization

Scripts that use this method require authorization with one or more of the followingscopes:

  • https://www.googleapis.com/auth/script.external_request

Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025-12-11 UTC.