public class SqlServerCallableStatement extends SqlServerPreparedStatement implements CallableStatement:
SQL Server callable statement for stored procedures.
import klyn.databases.sql.sqlserver
call = connection.callable("{ CALL sp_who }")
call.execute()| Modifier and Type | Member | Description |
|---|---|---|
| public readonly property | outParameters | No summary. |
| public readonly property | outValues | No summary. |
| Modifier and Type | Member | Description |
|---|---|---|
| public override | executeexecute() as Boolean throws SQLException: |
Configures or executes a SQL statement. |
| public override | executeexecute(sql as String) as Boolean throws SQLException: |
Configures or executes a SQL statement. |
| public override | executeQueryexecuteQuery(sql as String) as ResultSet throws SQLException: |
Configures or executes a SQL statement. |
| public override | executeUpdateexecuteUpdate(sql as String) as Int throws SQLException: |
Configures or executes a SQL statement. |
| public | getBooleangetBoolean(parameterIndex as Int) as Boolean throws SQLException: |
Configures or executes a SQL statement. |
| public | getBytegetByte(parameterIndex as Int) as SByte throws SQLException: |
Configures or executes a SQL statement. |
| public | getDateTimegetDateTime(parameterIndex as Int) as DateTime throws SQLException: |
Configures or executes a SQL statement. |
| public | getDoublegetDouble(parameterIndex as Int) as Double throws SQLException: |
Configures or executes a SQL statement. |
| public | getFloatgetFloat(parameterIndex as Int) as Float throws SQLException: |
Configures or executes a SQL statement. |
| public | getIntgetInt(parameterIndex as Int) as Int throws SQLException: |
Configures or executes a SQL statement. |
| public | getLonggetLong(parameterIndex as Int) as Long throws SQLException: |
Configures or executes a SQL statement. |
| public | getObjectgetObject(parameterIndex as Int) as Object throws SQLException: |
Configures or executes a SQL statement. |
| public | getShortgetShort(parameterIndex as Int) as Short throws SQLException: |
Configures or executes a SQL statement. |
| public | getStringgetString(parameterIndex as Int) as String throws SQLException: |
Configures or executes a SQL statement. |
| public | outout(index as Int, sqlType as Int, scale as Int = 0) as CallableStatement throws SQLException: |
Configures or executes a SQL statement. |
| public override | queryquery() as ResultSet throws SQLException: |
Configures or executes a SQL statement. |
| public | registerOutParameterregisterOutParameter(parameterIndex as Int, sqlType as Int, scale as Int = 0) as CallableStatement throws SQLException: |
Configures or executes a SQL statement. |
| public override | updateupdate() as Long throws SQLException: |
Configures or executes a SQL statement. |
| public | wasNullwasNull() as Boolean throws SQLException: |
Configures or executes a SQL statement. |