Метод | Описание | |
---|---|---|
Add ( |
Adds the specified MySqlParameter object to the MySqlParameterCollection.
|
|
Add ( string parameterName, MySqlDbType dbType ) : |
Adds a MySqlParameter to the MySqlParameterCollection given the parameter name and the data type.
|
|
Add ( string parameterName, MySqlDbType dbType, int size ) : |
Adds a MySqlParameter to the MySqlParameterCollection with the parameter name, the data type, and the column length.
|
|
Add ( string parameterName, MySqlDbType dbType, int size, string sourceColumn ) : |
Adds a MySqlParameter to the MySqlParameterCollection with the parameter name, the data type, the column length, and the source column name.
|
|
Add ( object value ) : int |
Adds the specified MySqlParameter object to the MySqlParameterCollection.
|
|
AddRange ( |
Adds an array of values to the end of the MySqlParameterCollection.
|
|
AddWithValue ( string parameterName, object value ) : |
||
Clear ( ) : void |
Removes all items from the collection.
|
|
Contains ( object value ) : bool |
Gets a value indicating whether a MySqlParameter exists in the collection.
|
|
Contains ( string parameterName ) : bool |
Gets a value indicating whether a MySqlParameter with the specified parameter name exists in the collection.
|
|
CopyTo ( |
Copies MySqlParameter objects from the MySqlParameterCollection to the specified array.
|
|
GetEnumerator ( ) : IEnumerator |
Returns an enumerator that iterates through the MySqlParameterCollection.
|
|
IndexOf ( object value ) : int |
Gets the location of a MySqlParameter in the collection.
|
|
IndexOf ( string parameterName ) : int |
Gets the location of the MySqlParameter in the collection with a specific parameter name.
|
|
Insert ( int index, object value ) : void |
Inserts a MySqlParameter into the collection at the specified index.
|
|
Remove ( object value ) : void |
Removes the specified MySqlParameter from the collection.
|
|
RemoveAt ( int index ) : void |
Removes the specified MySqlParameter from the collection using a specific index.
|
|
RemoveAt ( string parameterName ) : void |
Removes the specified MySqlParameter from the collection using the parameter name.
|
|
this ( int index ) : |
Gets the MySqlParameter at the specified index.
|
|
this ( string name ) : |
Gets the MySqlParameter with the specified name.
|
Метод | Описание | |
---|---|---|
GetParameter ( int index ) : DbParameter | ||
GetParameter ( string parameterName ) : DbParameter |
Retrieve the parameter with the given name.
|
|
SetParameter ( int index, DbParameter value ) : void | ||
SetParameter ( string parameterName, DbParameter value ) : void |
Метод | Описание | |
---|---|---|
Add ( string parameterName, object value ) : |
||
AdjustHash ( |
||
AdjustHashes ( int keyIndex, bool addEntry ) : void |
This method will update all the items in the index hashes when we insert a parameter somewhere in the middle
|
|
CheckIndex ( int index ) : void | ||
GetNextIndex ( ) : int | ||
GetParameterFlexible ( string parameterName, bool throwOnNotFound ) : |
||
GetParameterFlexibleInternal ( string baseName ) : |
||
InternalAdd ( |
||
MySqlParameterCollection ( |
||
ParameterNameChanged ( |
public Add ( |
||
value | The |
|
Результат |
public Add ( string parameterName, MySqlDbType dbType ) : |
||
parameterName | string | The name of the parameter. |
dbType | MySqlDbType | One of the |
Результат |
public Add ( string parameterName, MySqlDbType dbType, int size ) : |
||
parameterName | string | The name of the parameter. |
dbType | MySqlDbType | One of the |
size | int | The length of the column. |
Результат |
public Add ( string parameterName, MySqlDbType dbType, int size, string sourceColumn ) : |
||
parameterName | string | The name of the parameter. |
dbType | MySqlDbType | One of the |
size | int | The length of the column. |
sourceColumn | string | The name of the source column. |
Результат |
public Add ( object value ) : int | ||
value | object | The |
Результат | int |
public AddRange ( |
||
values | ||
Результат | void |
public AddWithValue ( string parameterName, object value ) : |
||
parameterName | string | |
value | object | |
Результат |
public Contains ( object value ) : bool | ||
value | object | The value of the |
Результат | bool |
public Contains ( string parameterName ) : bool | ||
parameterName | string | The name of the |
Результат | bool |
public CopyTo ( |
||
array | ||
index | int | |
Результат | void |
protected GetParameter ( int index ) : DbParameter | ||
index | int | |
Результат | DbParameter |
protected GetParameter ( string parameterName ) : DbParameter | ||
parameterName | string | |
Результат | DbParameter |
public IndexOf ( object value ) : int | ||
value | object | The |
Результат | int |
public IndexOf ( string parameterName ) : int | ||
parameterName | string | The name of the |
Результат | int |
public Insert ( int index, object value ) : void | ||
index | int | |
value | object | |
Результат | void |
public RemoveAt ( int index ) : void | ||
index | int | The zero-based index of the parameter. |
Результат | void |
public RemoveAt ( string parameterName ) : void | ||
parameterName | string | The name of the |
Результат | void |
protected SetParameter ( int index, DbParameter value ) : void | ||
index | int | |
value | DbParameter | |
Результат | void |
protected SetParameter ( string parameterName, DbParameter value ) : void | ||
parameterName | string | |
value | DbParameter | |
Результат | void |
public this ( int index ) : |
||
index | int | |
Результат |
public this ( string name ) : |
||
name | string | |
Результат |