DDT.ADODriver Method

Applies to TestComplete 12.60, last modified on September 17, 2018

Description

Use the ADODriver method to create a driver object for a recordset that can be accessed via Microsoft’s ADO DB (the recordset can be a table or result of an SQL query). You can then use this driver to iterate through the recordset, obtain values stored in its fields and use them in your data-driven tests. The names and order of the driver columns coincide with the order and names of the recordset columns.

Declaration

DDT.ADODriver(ConnectionStringTableName)

ConnectionString [in]    Required    String    
TableName [in]    Required    String    
Result An ADODriver object

Applies To

The method is applied to the following object:

Parameters

The method has the following parameters:

ConnectionString

Specifies the connection string used to connect to the database holding the desired recordset.

TableName

Specifies the name of the desired table or a SELECT SQL statement that will be executed to obtain the recordset.

Result Value

An ADODriver object that provides access to data stored in a recordset.

Remarks

The DDT object is available only if the Data-Driven Testing plugin is installed.

For information on working with DDT drivers, see Using DDT Drivers.

For information on specifics and limitations of the ADO DDT driver, see Using Database Tables as Data Storages.

Example

The code below connects to the specified database, retrieves information about the name of the command used by the database's myTable table, posts this name to the test log and then closes the connection to the database.

Note:

Using the Microsoft.Jet.OLEDB.4.0 provider requires that you run your script in the 32-bit version of TestComplete.

JavaScript, JScript

function ADODriverExample()
{
  // Specifies the connection string
  var ConStr = "Provider=Microsoft.Jet.OLEDB.4.0;" +
  "Data Source=C:\\Microsoft Visual Studio\\VB98\\biblio.mdb";
  // Specifies the name of the table
  var tName = "myTable";
  // Obtains the ADO Command object name
  var cName = DDT.ADODriver(ConStr, tName).ADOCommandObject.Name;
  // Posts this name to the test log
  Log.Message(cName);
  // Closes the connection to the specified database
  DDT.ADODriver(ConStr, tName).ADOConnectionObject.Close();
}

Python

def ADODriverExample():
  # Specifies the connection string
  ConStr = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=C:\\Microsoft Visual Studio\\VB98\\biblio.mdb"
  # Specifies the name of the table
  tName = "myTable"
  # Obtains the ADO Command object name
  cName = DDT.ADODriver(ConStr, tName).ADOCommandObject.Name
  # Posts this name to the test log
  Log.Message(cName)
  # Closes the connection to the specified database
  DDT.ADODriver(ConStr, tName).ADOConnectionObject.Close()

VBScript

Sub ADODriverExample
  ' Specifies the connection string
  ConStr = "Provider=Microsoft.Jet.OLEDB.4.0;" + _
  "Data Source=C:\Microsoft Visual Studio\VB98\biblio.mdb"
  ' Specifies the name of the table
  tName = "myTable"
  ' Obtains the ADO Command object name
  cName = DDT.ADODriver(ConStr, tName).ADOCommandObject.Name
  ' Posts this name to the test log
  Log.Message(cName)
  ' Closes the connection to the specified database
  DDT.ADODriver(ConStr, tName).ADOConnectionObject.Close
End Sub

DelphiScript

function ADODriverExample;
var ConStr, tName, cName;
begin
  // Specifies the connection string
  ConStr := 'Provider=Microsoft.Jet.OLEDB.4.0;' +
  'Data Source=C:\Microsoft Visual Studio\VB98\biblio.mdb';
  // Specifies the name of the table
  tName := 'myTable';
  // Obtains the ADO Command object name
  cName := DDT.ADODriver(ConStr, tName).ADOCommandObject.Name;
  // Posts this name to the test log
  Log.Message(cName);
  // Closes the connection to the specified database
  DDT.ADODriver(ConStr, tName).ADOConnectionObject.Close();
end;

C++Script, C#Script

function ADODriverExample()
{
  // Specifies the connection string
  var ConStr = "Provider=Microsoft.Jet.OLEDB.4.0;" +
  "Data Source=C:\\Microsoft Visual Studio\\VB98\\biblio.mdb";
  // Specifies the name of the table
  var tName = "myTable";
  // Obtains the ADO Command object name
  var cName = DDT["ADODriver"]( ConStr, tName )["ADOCommandObject"]["Name"];
  // Posts this name to the test log
  Log["Message"](cName);
  // Closes the connection to the specified database
  DDT["ADODriver"](ConStr, tName)["ADOConnectionObject"]["Close"]();
}

See Also

DDTDriver Object
Using DDT Drivers
Using Database Table as Data Storages
Data-Driven Testing

Highlight search results