_Application3.NewADODBConnection Method
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.
Creates and gets a reference to an empty ActiveX Data Objects (ADO) Connection object.
public:
System::Object ^ NewADODBConnection();
public object NewADODBConnection ();
abstract member NewADODBConnection : unit -> obj
Public Function NewADODBConnection () As Object
Returns
A reference to an ADO Connection object.
Implements
Examples
object adoConn = thisApplication.<span class="label">NewADODBConnection</span>();
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 namespace and its associated members by adding a reference to System.Data.dll and a using clause to System.Data.SqlClient.
Important: This member can be accessed only by forms opened from a form template that has been configured to run with full trust using the Security and Trust category of the Form Options dialog box. This member requires full trust for the immediate caller and cannot be used by partially trusted code. For more information, see "Using Libraries from Partially Trusted Code" on MSDN.