This section will help you to get started with the DataEngine library:
Initialize the connection string to the database file, the data of which you wish to import to the DataEngine base tables using the following code:
Create SqlConnection and SqlCommand objects to hold the desired data that needs to be imported.
Create an instance of the DbConnector class and pass the Workspace, SqlConnection and SqlCommand objects as parameters to its constructor. Use the GetData method of DbConnector class to create a DataEngine table containing the imported data.
Once the DataEngine base table is created, retrieve it using the table method of Workspace class. Perform desired queries on the data using the query method of Workspace class.
Execute the query by invoking the Execute method of the Query class.
Retrieve the query results using the GetQueryData method of the Workspace class. Finally, print the query results on the Console window using the Write method of the DataList class.