CommandTimeout Property

MySQL Connector.Net

Collapse image Expand Image Copy image CopyHover image
Gets or sets the wait time before terminating the attempt to execute a command and generating an error.

Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.8.4.0

Syntax

C#
public override int CommandTimeout { get; set; }
Visual Basic
Public Overrides Property CommandTimeout As Integer
	Get
	Set
Visual C++
public:
virtual property int CommandTimeout {
	int get () override;
	void set (int value) override;
}

Field Value

The time (in seconds) to wait for the command to execute. The default is 30 seconds.

Implements

IDbCommand..::..CommandTimeout

Remarks

CommandTimeout is dependent on the ability of MySQL to cancel an executing query. Because of this, CommandTimeout is only supported when connected to MySQL version 5.0.0 or higher.

See Also