Mono Class Library: Overview

MySql.Data.MySqlClient.MySqlParameter: Property Members

The properties of MySql.Data.MySqlClient.MySqlParameter are listed below. For a list of all members, see the MySqlParameter Members list.

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

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.