skip navigation
  • Product Bundles

    DevCraft

    All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:

    • MCP Servers
    • Embedded Reporting
    • Document Processing Libraries
    • SSO Account Sign-in

    Web

    Kendo UI UI for Angular UI for Vue UI for jQuery KendoReact UI for Blazor UI for ASP.NET Core UI for ASP.NET MVC UI for ASP.NET AJAX

    Mobile

    UI for .NET MAUI

    Document Management

    Telerik Document Processing

    Desktop

    UI for .NET MAUI UI for WinUI UI for WinForms UI for WPF

    Reporting

    Telerik Reporting Telerik Report Server

    Testing & Mocking

    Test Studio Telerik JustMock

    CMS

    Sitefinity

    AI Productivity Tools

    MCP Servers

    UI/UX Tools

    ThemeBuilder Design System Kit Templates and Building Blocks

    Debugging

    Fiddler Fiddler Everywhere Fiddler Classic Fiddler Everywhere Reporter FiddlerCore

    Free Tools

    KendoReact Free VB.NET to C# Converter Testing Framework
    View all products
  • Overview
  • Demos
    • What's New
    • Roadmap
    • Release History
  • Support and Learning

    • Support and Learning Hub
    • First Steps
    • Docs
    • Demos
    • Virtual Classroom
    • Use Reports in Applications
    • System Requirements
    • Forums
    • Videos
    • Blogs
    • Submit a Ticket
    • FAQs
  • Pricing
  • Shopping cart
    • Account Overview
    • Your Licenses
    • Downloads
    • Support Center
    • Forum Profile
    • Payment Methods
    • Edit Profile
    • Log out
  • Login
  • Contact Us
  • Try now
Search all

Interface CallableStatement

Inherited Members
PreparedStatement.executeQuery(Nullable<Int32>)
PreparedStatement.executeUpdate(Nullable<Int32>)
PreparedStatement.DontPrepare()
PreparedStatement.setBoolean(Int32, Boolean)
PreparedStatement.setByte(Int32, SByte)
PreparedStatement.setShort(Int32, Int16)
PreparedStatement.setInt(Int32, Int32)
PreparedStatement.setLong(Int32, Int64)
PreparedStatement.setUInt64(Int32, UInt64)
PreparedStatement.setFloat(Int32, Single)
PreparedStatement.setDouble(Int32, Double)
PreparedStatement.setBigDecimal(Int32, Nullable<Decimal>, Int32, Int32, Object)
PreparedStatement.setString(Int32, String, Boolean, Int32)
PreparedStatement.setChar(Int32, Char, Boolean)
PreparedStatement.setBytes(Int32, Byte[], Int32)
PreparedStatement.setDateTime(Int32, DateTime, Int32)
PreparedStatement.clearParameters()
PreparedStatement.setObject(Int32, Object)
PreparedStatement.execute(Nullable<Int32>)
PreparedStatement.setCharacterStream(Int32, StreamReader, Int32)
PreparedStatement.setNull(Int32, Int32, String)
PreparedStatement.setURL(Int32, Uri)
PreparedStatement.GetParameter(Int32)
PreparedStatement.GetCommand()
PreparedStatement.ReadOutputParameter(AdoTypeConverter, DataHolder, DbDataReader)
PreparedStatement.PreparePooling()
Statement.setMaxRows(Int32)
Statement.getMaxRows()
Statement.setQueryTimeout(Int32)
Statement.getQueryTimeout()
Statement.getResultSet()
Statement.setFetchSize(Int32)
Statement.getFetchSize()
Statement.getConnection()
Statement.executeQuery(String)
Statement.executeUpdate(String)
Statement.close()
Statement.cancel()
Statement.execute(String)
Statement.getMoreResults()
Statement.IsValid()
Statement.GetParameterValues()
Statement.PrepareBatching()
Statement.CreateAdapter()
Statement.Execute(DbDataAdapter, DataRow[], Batch)
Statement.SetFailed()
Statement.CommandText
Statement.LastInsertId
Statement.ServerType
Namespace: Telerik.OpenAccess.RT.sql
Assembly: Telerik.OpenAccess.Runtime.dll

Syntax

public interface CallableStatement : PreparedStatement, Statement

Methods

getBigDecimal(Int32)

Declaration
decimal getBigDecimal(int parameterIndex)
Parameters
System.Int32 parameterIndex

Returns
System.Decimal

getBigDecimal(Int32, Int32)

Declaration
decimal getBigDecimal(int parameterIndex, int scale)
Parameters
System.Int32 parameterIndex

System.Int32 scale

Returns
System.Decimal

getBigDecimal(String)

Declaration
decimal getBigDecimal(string parameterName)
Parameters
System.String parameterName

Returns
System.Decimal

getBoolean(Int32)

Declaration
bool getBoolean(int parameterIndex)
Parameters
System.Int32 parameterIndex

Returns
System.Boolean

getBoolean(String)

Declaration
bool getBoolean(string parameterName)
Parameters
System.String parameterName

Returns
System.Boolean

getByte(Int32)

Declaration
sbyte getByte(int parameterIndex)
Parameters
System.Int32 parameterIndex

Returns
System.SByte

getByte(String)

Declaration
sbyte getByte(string parameterName)
Parameters
System.String parameterName

Returns
System.SByte

getBytes(Int32)

Declaration
byte[] getBytes(int parameterIndex)
Parameters
System.Int32 parameterIndex

Returns
System.Byte[]

getBytes(String)

Declaration
byte[] getBytes(string parameterName)
Parameters
System.String parameterName

Returns
System.Byte[]

getDouble(Int32)

Declaration
double getDouble(int parameterIndex)
Parameters
System.Int32 parameterIndex

Returns
System.Double

getDouble(String)

Declaration
double getDouble(string parameterName)
Parameters
System.String parameterName

Returns
System.Double

getFloat(Int32)

Declaration
float getFloat(int parameterIndex)
Parameters
System.Int32 parameterIndex

Returns
System.Single

getFloat(String)

Declaration
float getFloat(string parameterName)
Parameters
System.String parameterName

Returns
System.Single

getInt(Int32)

Declaration
int getInt(int parameterIndex)
Parameters
System.Int32 parameterIndex

Returns
System.Int32

getInt(String)

Declaration
int getInt(string parameterName)
Parameters
System.String parameterName

Returns
System.Int32

getLong(Int32)

Declaration
long getLong(int parameterIndex)
Parameters
System.Int32 parameterIndex

Returns
System.Int64

getLong(String)

Declaration
long getLong(string parameterName)
Parameters
System.String parameterName

Returns
System.Int64

getObject(Int32)

Declaration
object getObject(int parameterIndex)
Parameters
System.Int32 parameterIndex

Returns
System.Object

getObject(Int32, IDictionary)

Declaration
object getObject(int i, IDictionary map)
Parameters
System.Int32 i

System.Collections.IDictionary map

Returns
System.Object

getObject(String)

Declaration
object getObject(string parameterName)
Parameters
System.String parameterName

Returns
System.Object

getObject(String, IDictionary)

Declaration
object getObject(string parameterName, IDictionary map)
Parameters
System.String parameterName

System.Collections.IDictionary map

Returns
System.Object

getShort(Int32)

Declaration
short getShort(int parameterIndex)
Parameters
System.Int32 parameterIndex

Returns
System.Int16

getShort(String)

Declaration
short getShort(string parameterName)
Parameters
System.String parameterName

Returns
System.Int16

getString(Int32)

Declaration
string getString(int parameterIndex)
Parameters
System.Int32 parameterIndex

Returns
System.String

getString(String)

Declaration
string getString(string parameterName)
Parameters
System.String parameterName

Returns
System.String

getURL(Int32)

Declaration
Uri getURL(int parameterIndex)
Parameters
System.Int32 parameterIndex

Returns
System.Uri

getURL(String)

Declaration
Uri getURL(string parameterName)
Parameters
System.String parameterName

Returns
System.Uri

registerOutParameter(Int32, Int32)

Declaration
void registerOutParameter(int parameterIndex, int sqlType)
Parameters
System.Int32 parameterIndex

System.Int32 sqlType

registerOutParameter(Int32, Int32, Int32)

Declaration
void registerOutParameter(int parameterIndex, int sqlType, int scale)
Parameters
System.Int32 parameterIndex

System.Int32 sqlType

System.Int32 scale

registerOutParameter(Int32, Int32, String)

Declaration
void registerOutParameter(int paramIndex, int sqlType, string typeName)
Parameters
System.Int32 paramIndex

System.Int32 sqlType

System.String typeName

registerOutParameter(String, Int32)

Declaration
void registerOutParameter(string parameterName, int sqlType)
Parameters
System.String parameterName

System.Int32 sqlType

registerOutParameter(String, Int32, Int32)

Declaration
void registerOutParameter(string parameterName, int sqlType, int scale)
Parameters
System.String parameterName

System.Int32 sqlType

System.Int32 scale

registerOutParameter(String, Int32, String)

Declaration
void registerOutParameter(string parameterName, int sqlType, string typeName)
Parameters
System.String parameterName

System.Int32 sqlType

System.String typeName

setAsciiStream(String, Stream, Int32)

Declaration
void setAsciiStream(string parameterName, Stream value_Renamed, int x)
Parameters
System.String parameterName

System.IO.Stream value_Renamed

System.Int32 x

setBigDecimal(String, Decimal)

Declaration
void setBigDecimal(string parameterName, decimal value_Renamed)
Parameters
System.String parameterName

System.Decimal value_Renamed

setBinaryStream(String, Stream, Int32)

Declaration
void setBinaryStream(string parameterName, Stream value_Renamed, int x)
Parameters
System.String parameterName

System.IO.Stream value_Renamed

System.Int32 x

setBoolean(String, Boolean)

Declaration
void setBoolean(string parameterName, bool value_Renamed)
Parameters
System.String parameterName

System.Boolean value_Renamed

setByte(String, SByte)

Declaration
void setByte(string parameterName, sbyte value_Renamed)
Parameters
System.String parameterName

System.SByte value_Renamed

setBytes(String, Byte[])

Declaration
void setBytes(string parameterName, byte[] value_Renamed)
Parameters
System.String parameterName

System.Byte[] value_Renamed

setCharacterStream(String, StreamReader, Int32)

Declaration
void setCharacterStream(string parameterName, StreamReader value_Renamed, int x)
Parameters
System.String parameterName

System.IO.StreamReader value_Renamed

System.Int32 x

setDouble(String, Double)

Declaration
void setDouble(string parameterName, double value_Renamed)
Parameters
System.String parameterName

System.Double value_Renamed

setFloat(String, Single)

Declaration
void setFloat(string parameterName, float value_Renamed)
Parameters
System.String parameterName

System.Single value_Renamed

setInt(String, Int32)

Declaration
void setInt(string parameterName, int value_Renamed)
Parameters
System.String parameterName

System.Int32 value_Renamed

setLong(String, Int64)

Declaration
void setLong(string parameterName, long value_Renamed)
Parameters
System.String parameterName

System.Int64 value_Renamed

setNull(String, Int32)

Declaration
void setNull(string parameterName, int sqlType)
Parameters
System.String parameterName

System.Int32 sqlType

setNull(String, Int32, String)

Declaration
void setNull(string parameterName, int sqlType, string str)
Parameters
System.String parameterName

System.Int32 sqlType

System.String str

setObject(String, Object)

Declaration
void setObject(string parameterName, object value_Renamed)
Parameters
System.String parameterName

System.Object value_Renamed

setObject(String, Object, Int32)

Declaration
void setObject(string parameterName, object value_Renamed, int x)
Parameters
System.String parameterName

System.Object value_Renamed

System.Int32 x

setObject(String, Object, Int32, Int32)

Declaration
void setObject(string parameterName, object value_Renamed, int x, int y)
Parameters
System.String parameterName

System.Object value_Renamed

System.Int32 x

System.Int32 y

setShort(String, Int16)

Declaration
void setShort(string parameterName, short value_Renamed)
Parameters
System.String parameterName

System.Int16 value_Renamed

setString(Int32, String)

Declaration
void setString(int index, string value_Renamed)
Parameters
System.Int32 index

System.String value_Renamed

setString(String, String)

Declaration
void setString(string parameterName, string value_Renamed)
Parameters
System.String parameterName

System.String value_Renamed

setURL(String, Uri)

Declaration
void setURL(string parameterName, Uri value_Renamed)
Parameters
System.String parameterName

System.Uri value_Renamed

wasNull()

Declaration
bool wasNull()
Returns
System.Boolean

Getting Started
  • Install Now
  • Online Demos
Support Resources
  • Documentation
  • Knowledge Base
  • Videos
  • Reporting Samples Repository
  • Reporting Release History
Community
  • Forums
  • Blogs
  • Reporting Feedback Portal

Copyright © 2018 Progress Software Corporation and/or its subsidiaries or affiliates.
All Rights Reserved.

Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries. See Trademarks for appropriate markings.