Table of Contents

Interface IStatement

Namespace
Java.Sql
Assembly
MASES.JNet.dll

.NET interface for TO BE DEFINED FROM USER

public interface IStatement

Properties

Connection

Connection Connection { get; }

Property Value

Connection

FetchDirection

int FetchDirection { get; set; }

Property Value

int

FetchSize

int FetchSize { get; set; }

Property Value

int

GeneratedKeys

ResultSet GeneratedKeys { get; }

Property Value

ResultSet

LargeMaxRows

long LargeMaxRows { get; set; }

Property Value

long

LargeUpdateCount

long LargeUpdateCount { get; }

Property Value

long

MaxFieldSize

int MaxFieldSize { get; set; }

Property Value

int

MaxRows

int MaxRows { get; set; }

Property Value

int

MoreResults

bool MoreResults { get; }

Property Value

bool

QueryTimeout

int QueryTimeout { get; set; }

Property Value

int

ResultSet

ResultSet ResultSet { get; }

Property Value

ResultSet

ResultSetConcurrency

int ResultSetConcurrency { get; }

Property Value

int

ResultSetHoldability

int ResultSetHoldability { get; }

Property Value

int

ResultSetType

int ResultSetType { get; }

Property Value

int

UpdateCount

int UpdateCount { get; }

Property Value

int

Warnings

SQLWarning Warnings { get; }

Property Value

SQLWarning

Methods

AddBatch(String)

void AddBatch(String arg0)

Parameters

arg0 String

String

Exceptions

SQLException

Cancel()

void Cancel()

Exceptions

SQLException

ClearBatch()

void ClearBatch()

Exceptions

SQLException

ClearWarnings()

void ClearWarnings()

Exceptions

SQLException

Close()

void Close()

Exceptions

SQLException

CloseOnCompletion()

void CloseOnCompletion()

Exceptions

SQLException

EnquoteIdentifier(String, bool)

String EnquoteIdentifier(String arg0, bool arg1)

Parameters

arg0 String

String

arg1 bool

bool

Returns

String

String

Exceptions

SQLException

EnquoteLiteral(String)

String EnquoteLiteral(String arg0)

Parameters

arg0 String

String

Returns

String

String

Exceptions

SQLException

EnquoteNCharLiteral(String)

String EnquoteNCharLiteral(String arg0)

Parameters

arg0 String

String

Returns

String

String

Exceptions

SQLException

Execute(String)

bool Execute(String arg0)

Parameters

arg0 String

String

Returns

bool

bool

Exceptions

SQLException

Execute(String, String[])

bool Execute(String arg0, String[] arg1)

Parameters

arg0 String

String

arg1 String[]

String

Returns

bool

bool

Exceptions

SQLException

Execute(String, int)

bool Execute(String arg0, int arg1)

Parameters

arg0 String

String

arg1 int

int

Returns

bool

bool

Exceptions

SQLException

Execute(String, int[])

bool Execute(String arg0, int[] arg1)

Parameters

arg0 String

String

arg1 int[]

int

Returns

bool

bool

Exceptions

SQLException

ExecuteBatch()

int[] ExecuteBatch()

Returns

int[]

int

Exceptions

SQLException

ExecuteLargeBatch()

long[] ExecuteLargeBatch()

Returns

long[]

long

Exceptions

SQLException

ExecuteLargeUpdate(String)

long ExecuteLargeUpdate(String arg0)

Parameters

arg0 String

String

Returns

long

long

Exceptions

SQLException

ExecuteLargeUpdate(String, String[])

long ExecuteLargeUpdate(String arg0, String[] arg1)

Parameters

arg0 String

String

arg1 String[]

String

Returns

long

long

Exceptions

SQLException

ExecuteLargeUpdate(String, int)

long ExecuteLargeUpdate(String arg0, int arg1)

Parameters

arg0 String

String

arg1 int

int

Returns

long

long

Exceptions

SQLException

ExecuteLargeUpdate(String, int[])

long ExecuteLargeUpdate(String arg0, int[] arg1)

Parameters

arg0 String

String

arg1 int[]

int

Returns

long

long

Exceptions

SQLException

ExecuteQuery(String)

ResultSet ExecuteQuery(String arg0)

Parameters

arg0 String

String

Returns

ResultSet

ResultSet

Exceptions

SQLException

ExecuteUpdate(String)

int ExecuteUpdate(String arg0)

Parameters

arg0 String

String

Returns

int

int

Exceptions

SQLException

ExecuteUpdate(String, String[])

int ExecuteUpdate(String arg0, String[] arg1)

Parameters

arg0 String

String

arg1 String[]

String

Returns

int

int

Exceptions

SQLException

ExecuteUpdate(String, int)

int ExecuteUpdate(String arg0, int arg1)

Parameters

arg0 String

String

arg1 int

int

Returns

int

int

Exceptions

SQLException

ExecuteUpdate(String, int[])

int ExecuteUpdate(String arg0, int[] arg1)

Parameters

arg0 String

String

arg1 int[]

int

Returns

int

int

Exceptions

SQLException

GetMoreResults(int)

bool GetMoreResults(int arg0)

Parameters

arg0 int

int

Returns

bool

bool

Exceptions

SQLException

IsCloseOnCompletion()

bool IsCloseOnCompletion()

Returns

bool

bool

Exceptions

SQLException

IsClosed()

bool IsClosed()

Returns

bool

bool

Exceptions

SQLException

IsPoolable()

bool IsPoolable()

Returns

bool

bool

Exceptions

SQLException

IsSimpleIdentifier(String)

bool IsSimpleIdentifier(String arg0)

Parameters

arg0 String

String

Returns

bool

bool

Exceptions

SQLException

SetCursorName(String)

void SetCursorName(String arg0)

Parameters

arg0 String

String

Exceptions

SQLException

SetEscapeProcessing(bool)

void SetEscapeProcessing(bool arg0)

Parameters

arg0 bool

bool

Exceptions

SQLException

SetPoolable(bool)

void SetPoolable(bool arg0)

Parameters

arg0 bool

bool

Exceptions

SQLException