C# Class Mono.Data.Sqlite.SqliteParameter

Inheritance: IDbDataParameter
Mostra file Open project: rubenv/tripod Class Usage Examples

Private Properties

Property Type Description
SqliteParameter System
SqliteParameter System
SqliteParameter System

Public Methods

Method Description
Clone ( ) : object

Clones a parameter

ResetDbType ( ) : void

Not implemented

SqliteParameter ( ) : System

Default constructor

SqliteParameter ( DbType dbType ) : System

Constructs an unnamed parameter of the specified data type

SqliteParameter ( DbType parameterType, int parameterSize ) : System

Constructs an unnamed parameter of the specified type and size

SqliteParameter ( DbType parameterType, int parameterSize, string sourceColumn ) : System

Constructs an unnamed parameter of the specified type, size, and source column

SqliteParameter ( DbType parameterType, int parameterSize, string sourceColumn, DataRowVersion rowVersion ) : System

Constructs an unnamed parameter of the specified type, size, source column and row version

SqliteParameter ( DbType dbType, object value ) : System

Constructs an unnamed parameter of the specified data type and sets the initial value

SqliteParameter ( DbType dbType, string sourceColumn ) : System

Constructs an unnamed parameter of the specified data type and source column

SqliteParameter ( DbType dbType, string sourceColumn, DataRowVersion rowVersion ) : System

Constructs an unnamed parameter of the specified data type, source column and row version

SqliteParameter ( string parameterName ) : System

Constructs a named parameter given the specified parameter name

SqliteParameter ( string parameterName, DbType dbType ) : System

Constructs a named parameter of the specified type

SqliteParameter ( string parameterName, DbType parameterType, int parameterSize ) : System

Constructs a named parameter of the specified type and size

SqliteParameter ( string parameterName, DbType parameterType, int parameterSize, string sourceColumn ) : System

Constructs a named parameter of the specified type, size and source column

SqliteParameter ( string parameterName, DbType parameterType, int parameterSize, string sourceColumn, DataRowVersion rowVersion ) : System

Constructs a named parameter of the specified type, size, source column and row version

SqliteParameter ( string parameterName, DbType dbType, string sourceColumn ) : System

Constructs a named parameter of the specified type and source column reference

SqliteParameter ( string parameterName, DbType dbType, string sourceColumn, DataRowVersion rowVersion ) : System

Constructs a named parameter of the specified type, source column and row version

SqliteParameter ( string parameterName, object value ) : System

Constructs a named parameter given the specified parameter name and initial value

Private Methods

Method Description
SqliteParameter ( SqliteParameter source ) : System
SqliteParameter ( string parameterName, DbType parameterType, int parameterSize, ParameterDirection direction, bool isNullable, byte precision, byte scale, string sourceColumn, DataRowVersion rowVersion, object value ) : System
SqliteParameter ( string parameterName, DbType parameterType, int parameterSize, ParameterDirection direction, byte precision, byte scale, string sourceColumn, DataRowVersion rowVersion, bool sourceColumnNullMapping, object value ) : System

Method Details

Clone() public method

Clones a parameter
public Clone ( ) : object
return object

ResetDbType() public method

Not implemented
public ResetDbType ( ) : void
return void

SqliteParameter() public method

Default constructor
public SqliteParameter ( ) : System
return System

SqliteParameter() public method

Constructs an unnamed parameter of the specified data type
public SqliteParameter ( DbType dbType ) : System
dbType DbType The datatype of the parameter
return System

SqliteParameter() public method

Constructs an unnamed parameter of the specified type and size
public SqliteParameter ( DbType parameterType, int parameterSize ) : System
parameterType DbType The data type
parameterSize int The size of the parameter
return System

SqliteParameter() public method

Constructs an unnamed parameter of the specified type, size, and source column
public SqliteParameter ( DbType parameterType, int parameterSize, string sourceColumn ) : System
parameterType DbType The data type
parameterSize int The size of the parameter
sourceColumn string The source column
return System

SqliteParameter() public method

Constructs an unnamed parameter of the specified type, size, source column and row version
public SqliteParameter ( DbType parameterType, int parameterSize, string sourceColumn, DataRowVersion rowVersion ) : System
parameterType DbType The data type
parameterSize int The size of the parameter
sourceColumn string The source column
rowVersion DataRowVersion The row version information
return System

SqliteParameter() public method

Constructs an unnamed parameter of the specified data type and sets the initial value
public SqliteParameter ( DbType dbType, object value ) : System
dbType DbType The datatype of the parameter
value object The initial value of the parameter
return System

SqliteParameter() public method

Constructs an unnamed parameter of the specified data type and source column
public SqliteParameter ( DbType dbType, string sourceColumn ) : System
dbType DbType The datatype of the parameter
sourceColumn string The source column
return System

SqliteParameter() public method

Constructs an unnamed parameter of the specified data type, source column and row version
public SqliteParameter ( DbType dbType, string sourceColumn, DataRowVersion rowVersion ) : System
dbType DbType The data type
sourceColumn string The source column
rowVersion DataRowVersion The row version information
return System

SqliteParameter() public method

Constructs a named parameter given the specified parameter name
public SqliteParameter ( string parameterName ) : System
parameterName string The parameter name
return System

SqliteParameter() public method

Constructs a named parameter of the specified type
public SqliteParameter ( string parameterName, DbType dbType ) : System
parameterName string The parameter name
dbType DbType The datatype of the parameter
return System

SqliteParameter() public method

Constructs a named parameter of the specified type and size
public SqliteParameter ( string parameterName, DbType parameterType, int parameterSize ) : System
parameterName string The parameter name
parameterType DbType The data type
parameterSize int The size of the parameter
return System

SqliteParameter() public method

Constructs a named parameter of the specified type, size and source column
public SqliteParameter ( string parameterName, DbType parameterType, int parameterSize, string sourceColumn ) : System
parameterName string The name of the parameter
parameterType DbType The data type
parameterSize int The size of the parameter
sourceColumn string The source column
return System

SqliteParameter() public method

Constructs a named parameter of the specified type, size, source column and row version
public SqliteParameter ( string parameterName, DbType parameterType, int parameterSize, string sourceColumn, DataRowVersion rowVersion ) : System
parameterName string The name of the parameter
parameterType DbType The data type
parameterSize int The size of the parameter
sourceColumn string The source column
rowVersion DataRowVersion The row version information
return System

SqliteParameter() public method

Constructs a named parameter of the specified type and source column reference
public SqliteParameter ( string parameterName, DbType dbType, string sourceColumn ) : System
parameterName string The parameter name
dbType DbType The data type
sourceColumn string The source column
return System

SqliteParameter() public method

Constructs a named parameter of the specified type, source column and row version
public SqliteParameter ( string parameterName, DbType dbType, string sourceColumn, DataRowVersion rowVersion ) : System
parameterName string The parameter name
dbType DbType The data type
sourceColumn string The source column
rowVersion DataRowVersion The row version information
return System

SqliteParameter() public method

Constructs a named parameter given the specified parameter name and initial value
public SqliteParameter ( string parameterName, object value ) : System
parameterName string The parameter name
value object The initial value of the parameter
return System