Property | Type | Description | |
---|---|---|---|
EstimatedSize | long | ||
GetPSType | int | ||
ICloneable | object | ||
MySqlParameter | System | ||
Serialize | void | ||
SetDbType | void | ||
SetMySqlDbType | void | ||
SetTypeFromValue | void |
Method | Description | |
---|---|---|
Clone ( ) : |
||
MySqlParameter ( ) : System |
Initializes a new instance of the MySqlParameter class.
|
|
MySqlParameter ( string parameterName, MySqlDbType dbType ) : System |
Initializes a new instance of the MySqlParameter class with the parameter name and the data type.
|
|
MySqlParameter ( string parameterName, MySqlDbType dbType, int size ) : System |
Initializes a new instance of the MySqlParameter class with the parameter name, the MySqlDbType, and the size.
|
|
MySqlParameter ( string parameterName, MySqlDbType dbType, int size, ParameterDirection direction, bool isNullable, byte precision, byte scale, string sourceColumn, DataRowVersion sourceVersion, object value ) : System |
Initializes a new instance of the MySqlParameter class with the parameter name, the type of the parameter, the size of the parameter, a ParameterDirection, the precision of the parameter, the scale of the parameter, the source column, a DataRowVersion to use, and the value of the parameter.
|
|
MySqlParameter ( string parameterName, MySqlDbType dbType, int size, string sourceColumn ) : System |
Initializes a new instance of the MySqlParameter class with the parameter name, the MySqlDbType, the size, and the source column name.
|
|
MySqlParameter ( string parameterName, object value ) : System |
Initializes a new instance of the MySqlParameter class with the parameter name and a value of the new MySqlParameter.
|
|
ResetDbType ( ) : void |
Resets the DbType property to its original settings.
|
|
ToString ( ) : string |
Overridden. Gets a string containing the ParameterName.
|
Method | Description | |
---|---|---|
EstimatedSize ( ) : long | ||
GetPSType ( ) : int | ||
ICloneable ( ) : object | ||
MySqlParameter ( string name, MySqlDbType type, ParameterDirection dir, string col, DataRowVersion ver, object val ) : System | ||
Serialize ( |
||
SetDbType ( DbType db_type ) : void | ||
SetMySqlDbType ( MySqlDbType mysql_dbtype ) : void | ||
SetTypeFromValue ( ) : void |
public MySqlParameter ( string parameterName, MySqlDbType dbType ) : System | ||
parameterName | string | The name of the parameter to map. |
dbType | MySqlDbType | One of the |
return | System |
public MySqlParameter ( string parameterName, MySqlDbType dbType, int size ) : System | ||
parameterName | string | The name of the parameter to map. |
dbType | MySqlDbType | One of the |
size | int | The length of the parameter. |
return | System |
public MySqlParameter ( string parameterName, MySqlDbType dbType, int size, ParameterDirection direction, bool isNullable, byte precision, byte scale, string sourceColumn, DataRowVersion sourceVersion, object value ) : System | ||
parameterName | string | The name of the parameter to map. |
dbType | MySqlDbType | One of the |
size | int | The length of the parameter. |
direction | ParameterDirection | One of the |
isNullable | bool | true if the value of the field can be null, otherwise false. |
precision | byte | The total number of digits to the left and right of the decimal point to which |
scale | byte | The total number of decimal places to which |
sourceColumn | string | The name of the source column. |
sourceVersion | DataRowVersion | One of the |
value | object | An |
return | System |
public MySqlParameter ( string parameterName, MySqlDbType dbType, int size, string sourceColumn ) : System | ||
parameterName | string | The name of the parameter to map. |
dbType | MySqlDbType | One of the |
size | int | The length of the parameter. |
sourceColumn | string | The name of the source column. |
return | System |
public MySqlParameter ( string parameterName, object value ) : System | ||
parameterName | string | The name of the parameter to map. |
value | object | An |
return | System |