ADOAdapter2.Timeout Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the timeout value for an ADOAdapterObject object.
public:
property int Timeout { int get(); void set(int value); };
public int Timeout { get; set; }
member this.Timeout : int with get, set
Public Property Timeout As Integer
Property Value
Implements
Examples
In the following example, the Timeout property of the ADOAdapterObject object is used to display the timeout value of the ADO data adapter in a message box:
ADOAdapter adapter;
adapter = (ADOAdapter) thisXDocument.DataObjects["Customers"].QueryAdapter;
thisXDocument.UI.Alert("SQL command text: " + adapter.<span class="label">Timeout</span>);
Remarks
The Timeout property of the ADOAdapter object contains the timeout value that is used by the ADO data adapter to regulate the time used to submit and retrieve data from an ActiveX Data Objects/OLEDB external data source.
Note: The ADOAdapter object is limited to work only with Microsoft SQL Server and Microsoft Access databases.