ADOAdapter2.Timeout Property
Gets or sets the timeout value for an ADOAdapterObject object.
Namespace: Microsoft.Office.Interop.InfoPath.SemiTrust
Assembly: Microsoft.Office.Interop.InfoPath.SemiTrust (in Microsoft.Office.Interop.InfoPath.SemiTrust.dll)
Syntax
'Declaration
Property Timeout As Integer
Get
Set
'Usage
Dim instance As ADOAdapter2
Dim value As Integer
value = instance.Timeout
instance.Timeout = value
int Timeout { get; set; }
Property Value
Type: System.Int32
Implements
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.
Important
This member can be accessed only by forms running in the same domain as the currently open form, or by forms that have been granted cross-domain permissions.
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.Timeout);