VOOZH about

URL: https://www.cdata.com/kb/tech/eloquareporting-jdbc-squirrel-sql.rst

⇱ How to connect to Oracle Eloqua Reporting Data with Squirrel SQL client


How to connect to Oracle Eloqua Reporting Data with Squirrel SQL client

πŸ‘ Jerod Johnson
Jerod Johnson
Director, Technology Evangelism
Connect to Oracle Eloqua Reporting data and execute queries in the Squirrel SQL Client.

The CData JDBC Driver for Oracle Eloqua Reporting enables you to execute queries to Oracle Eloqua Reporting data in tools like Squirrel SQL Client. In this article, you will create a JDBC data source for Oracle Eloqua Reporting data and execute queries.

Add the JDBC Driver for Oracle Eloqua Reporting

Follow the steps below to add the driver JAR.

  1. In Squirrel SQL, click Windows -> View Drivers.
  2. Click the plus icon to open the Add Driver wizard.
  3. In the Name box, enter a user-friendly name for the driver; for example, CData JDBC Driver for Oracle Eloqua Reporting.
  4. In the Example URL box, enter jdbc:oracleeloquareporting:
  5. In the Extra Class Path tab, click Add.
  6. In the file explorer dialog that opens, select the JAR file for the driver, located in the lib subfolder of the installation directory.
  7. Click List Drivers to populate the Class Name menu with the class name for the driver, cdata.jdbc.oracleeloquareporting.OracleEloquaReportingDriver.
πŸ‘ The definition for the JDBC data source. (Salesforce is shown.)

Define Connection Properties

Follow the steps below to save connection properties in the driver alias.

  1. Click Windows -> View Aliases.
  2. In the pane that lists the aliases, click the plus icon.
  3. In the Add Alias wizard that opens, the following fields are required for the JDBC driver:

    • Name: Enter a name for the alias; for example, CData Oracle Eloqua Reporting Source.
    • Driver: Select the CData JDBC Driver for Oracle Eloqua Reporting.
    • URL: Enter jdbc:oracleeloquareporting:
    • User Name: Enter the username, which is added to the JDBC URL.
    • Password: Enter the password, which is added to the JDBC URL.
    πŸ‘ The alias definition, containing the connection parameters. (Salesforce is shown.)
  4. If you want to define any additional properties, click Properties.
  5. In the Driver properties tab of the dialog that appears, select the Use driver properties checkbox.
  6. In the Specify column, select the checkboxes for the required connection properties.

    Oracle Eloqua Reporting supports the following authentication methods:

    • Basic authentication (User and Password)
    • OAuth 2.0 code grant flow
    • OAuth 2.0 password grant flow

    Basic Authentication (User and Password)

    To perform authentication with a user and password, specify these properties:

    • AuthScheme: Basic.
    • Company: The company name associated with your Oracle Eloqua Reporting account.
    • User: Your login account name.
    • Password: Your login password.

    OAuth Authentication (Code Grant Flow)

    To authenticate with the OAuth code grant flow, you must set AuthScheme to OAuth and create a custom OAuth application. For information about how to create a custom OAuth application, see the Help documentation.

    Then set the following properties:

    • InitiateOAuth: GETANDREFRESH. Used to automatically get and refresh the OAuthAccessToken.
    • OAuthClientId: The client Id assigned when you registered your application.
    • OAuthClientSecret: The client secret that was assigned when you registered your application.
    • CallbackURL: The redirect URI that was defined when you registered your application.

    When you connect, the driver opens Oracle Eloqua Reporting's OAuth endpoint in your default browser. Log in and grant permissions to the application. When the access token expires, the driver refreshes it automatically.

    OAuth Authentication (Password Grant Flow)

    With the OAuth password grant flow, you can use your OAuth application's credentials alongside your user credentials to authenticate without the need to grant permission manually via a browser prompt. You must create an OAuth app (see the Help documentation) to use this authentication method.

    Set the following properties:

    • AuthScheme: OAuthPassword
    • Company: The company's unique identifier.
    • User: Your login account name.
    • Password: Your login password.
    • OAuthClientId: The client Id assigned when you registered your custom OAuth application.
    • OAuthClientSecret: The client secret assigned when you registered your custom OAuth application.

    Below is a typical connection string:

    jdbc:oracleeloquareporting:AuthScheme=Basic;User=user;Password=password;Company=MyCompany;
    
    πŸ‘ Connection properties automatically detected by Squirrel SQL. (Salesforce is shown.)
  7. In the dialog that appears after you click OK, click connect to test the connection.

Discover Schemas and Query Oracle Eloqua Reporting Data

After the metadata has loaded, a new tab for the Oracle Eloqua Reporting data source is displayed. On the Objects subtab, you can discover schema information, such as the available tables and views.

πŸ‘ Column metadata for a table. (Salesforce is shown.)

To view table data, select the table on the Objects tab. The table data is then loaded in a grid on the Content tab.

πŸ‘ Tables can be edited on the Content tab. (Salesforce is shown.)

To execute an SQL query, enter the query on the SQL tab and then click Run SQL (the runner icon). For example:

SELECT , FROM WHERE = ''
πŸ‘ A query and the results. (Salesforce is shown.)

Ready to get started?

Download a free trial of the Oracle Eloqua Reporting Driver to get started:

 Download Now

Learn more:

πŸ‘ Oracle Eloqua Reporting Icon
Oracle Eloqua Reporting JDBC Driver

Rapidly create and deploy powerful Java applications that integrate with Oracle Eloqua Reporting.