Mono Class Library: Overview

MySql.Data.MySqlClient.MySqlParameter: Members

The members of MySql.Data.MySqlClient.MySqlParameter are listed below.

See Also: Inherited members from System.Data.Common.DbParameter

Public Constructors

Initializes a new instance of the MySqlParameter class.
Initializes a new instance of the MySql.Data.MySqlClient.MySqlParameter class with the parameter name, the type of the parameter, the size of the parameter, a System.Data.ParameterDirection, the precision of the parameter, the scale of the parameter, the source column, a System.Data.DataRowVersion to use, and the value of the parameter.
Initializes a new instance of the MySql.Data.MySqlClient.MySqlParameter class with the parameter name and the data type.
Initializes a new instance of the MySql.Data.MySqlClient.MySqlParameter class with the parameter name and a value of the new MySqlParameter.
Initializes a new instance of the MySql.Data.MySqlClient.MySqlParameter class with the parameter name, the MySql.Data.MySqlClient.MySqlDbType, and the size.
Initializes a new instance of the MySql.Data.MySqlClient.MySqlParameter class with the parameter name, the MySql.Data.MySqlClient.MySqlDbType, the size, and the source column name.

Public Properties

override
DbTypeSystem.Data.DbType. Gets or sets the System.Data.DbType of the parameter.
override
DirectionSystem.Data.ParameterDirection. Gets or sets a value indicating whether the parameter is input-only, output-only, bidirectional, or a stored procedure return value parameter. As of MySql version 4.1 and earlier, input-only is the only valid choice.
override
IsNullablebool. Gets or sets a value indicating whether the parameter accepts null values.
MySqlDbTypeMySqlDbType. Gets or sets the MySqlDbType of the parameter.
override
ParameterNamestring. Gets or sets the name of the MySqlParameter.
Precisionbyte. Gets or sets the maximum number of digits used to represent the MySqlParameter.Value property.
Scalebyte. Gets or sets the number of decimal places to which MySqlParameter.Value is resolved.
override
Sizeint. Gets or sets the maximum size, in bytes, of the data within the column.
override
SourceColumnstring. Gets or sets the name of the source column that is mapped to the System.Data.DataSet and used for loading or returning the MySqlParameter.Value.
override
SourceColumnNullMappingbool. Sets or gets a value which indicates whether the source column is nullable. This allows System.Data.Common.DbCommandBuilder to correctly generate Update statements for nullable columns.
override
SourceVersionSystem.Data.DataRowVersion. Gets or sets the System.Data.DataRowVersion to use when loading MySqlParameter.Value.
override
Valueobject. Gets or sets the value of the parameter.

Public Methods

Clone() : MySqlParameter
Documentation for this section has not yet been entered.
override
ResetDbType()
Resets the DbType property to its original settings.
override
ToString() : string
Overridden. Gets a string containing the MySqlParameter.ParameterName.

Explicitly Implemented Interface Members

ICloneable.CloneDocumentation for this section has not yet been entered.