DatabaseDataSet.CommandTimeout Property
Gets or sets a value indicating how long the dataset should wait before considering a command as failed.
Syntax
public System.Int32 CommandTimeout { get; set; }
Property Value
Default: 0
The number of seconds the dataset should wait before considering a command as failed.
Remarks
If this property is set to a value greater than 0, commands and queries sent to the server will that are not completed within this time will be canceled, and the dataset will generate an exception. The error message will typically say that an operation timed out, or was canceled.
A timeout will only occur if the time to execute the command on the server takes to long. After the commend is executed, reading back the resulting data from the server will take additional time, that will not trigger a timeout.
If the value is 0 (the default), the underlying database driver will use its own error and timeout handling.
Platforms
Windows, Linux, Android