_Application3.NewADODBRecordset 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) Recordset object.
public:
System::Object ^ NewADODBRecordset();
public object NewADODBRecordset ();
abstract member NewADODBRecordset : unit -> obj
Public Function NewADODBRecordset () As Object
Returns
A reference to an empty ActiveX Data Objects (ADO) Recordset object.
Implements
Examples
object adoRS = thisApplication.<span class="label">NewADODBRecordset</span>();
Remarks
If the form is not fully trusted, the NewADODBRecordset 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 System.Data component and a using clause to System.Data.SqlClient.