_Application3.NewADODBConnection Method
Creates and gets a reference to an empty ActiveX Data Objects (ADO) Connection object.
Namespace: Microsoft.Office.Interop.InfoPath
Assembly: Microsoft.Office.Interop.InfoPath (in Microsoft.Office.Interop.InfoPath.dll)
Syntax
'Declaration
Function NewADODBConnection As Object
'Usage
Dim instance As _Application3
Dim returnValue As Object
returnValue = instance.NewADODBConnection()
Object NewADODBConnection()
Return Value
Type: System.Object
A reference to an ADO Connection object.
Implements
_Application2.NewADODBConnection()
Remarks
If the form is not fully trusted, the NewADODBConnection method will return a "permission denied" error.
Note
This method is not intended to be used in a managed-code form. To query a Microsoft SQL Server database, use the System.Data.SqlClient class and its associated members by adding a reference to the System.Data component and a using clause to System.Data.SqlClient.
Examples
object adoConn = thisApplication.NewADODBConnection();