SqlServerStatement
classin packageklyn.databases.sql.sqlserver
public class SqlServerStatement extends SqlServerStatementBase implements Statement:
SqlServerStatement
All Implemented Interfaces: Statement

SQL Server statement implementation.

import klyn.databases.sql.sqlserver

# statement = connection.statement()
Properties inherited from Statement: batchSize, closeOnCompletion, closed, concurrency, connection, cursorName, escapeProcessing, fetchDirection, fetchSize, generatedKeys, holdability, largeMaxRows, maxFieldSize, maxRows, poolable, queryTimeoutSeconds, resultSetType, warning
Methods
Modifier and Type Member Description
public addBatch
addBatch(sql as String) as Void throws SQLException:
Configures or executes a SQL statement.
public clearBatch
clearBatch() as Void:
No summary.
public clearWarnings
clearWarnings() as Void:
No summary.
public override close
close() as Void:
No summary.
public execute
execute(sql as String) as Boolean throws SQLException:
Configures or executes a SQL statement.
public executeBatch
executeBatch() as ArrayList<Long> throws SQLException:
Configures or executes a SQL statement.
public executeQuery
executeQuery(sql as String) as ResultSet throws SQLException:
Configures or executes a SQL statement.
public executeUpdate
executeUpdate(sql as String) as Int throws SQLException:
Configures or executes a SQL statement.
Methods inherited from Statement: addBatch, clearBatch, clearWarnings, execute, executeBatch, executeQuery, executeUpdate, getResultSet
Methods inherited from AutoClosable: close