C# Class Mono.Data.Sqlite.SqliteStatement

Represents a single SQL statement in Sqlite.
Inheritance: IDisposable
Mostra file Open project: rubenv/tripod Class Usage Examples

Private Properties

Property Type Description
BindParameter void
BindParameters void
MapParameter bool
SetTypes void
SqliteStatement System

Public Methods

Method Description
Dispose ( ) : void

Disposes and finalizes the statement

Private Methods

Method Description
BindParameter ( int index, SqliteParameter param ) : void

Perform the bind operation for an individual parameter

BindParameters ( ) : void

Bind all parameters, making sure the caller didn't miss any

MapParameter ( string s, SqliteParameter p ) : bool

Called by SqliteParameterCollection, this function determines if the specified parameter name belongs to this statement, and if so, keeps a reference to the parameter so it can be bound later.

SetTypes ( string typedefs ) : void
SqliteStatement ( SqliteBase sqlbase, IntPtr stmt, string strCommand, SqliteStatement previous ) : System

Initializes the statement and attempts to get all information about parameters in the statement

Method Details

Dispose() public method

Disposes and finalizes the statement
public Dispose ( ) : void
return void