Provider

Description

Identifies the data provider you want to use to connect to your data source.

NoteWhen to specify Provider You must specify the Provider parameter before connecting to the database.

Applies to

Syntax

Provider = 'provider_name'

Default

None

Usage

Select a data provider from the list of installed data providers displayed in the Provider drop-down list. For example, if you are using Microsoft’s OLE DB Provider for ODBC, select MSDASQL as the Provider value. If you are using Microsoft’s OLE DB Provider for SQL Server, select SQLOLEDB as the Provider value.

For more information, see the documentation provided by your OLE DB or ADO.NET data provider.

When you use this parameter with an AdoTransaction object in DataWindow .NET, set this parameter in the ConnectString parameter of the Connection object. For more information, see “Specifying parameters for ADO.NET and AdoTransaction”.

Examples

Example 1

To use the Microsoft OLE DB Provider for ODBC to connect to the EAS Demo DB:

Example 2

To use the Microsoft OLE DB Provider for Oracle to connect to an Oracle 8 database:

Example 3

To use the Sybase Oracle8 ADO Provider to connect to an Oracle 8 database:

See also