Ready to get started?

Download a free trial of the SAP ERP Driver to get started:

 Download Now

Learn more:

SAP ERP Icon SAP ERP JDBC Driver

Straightforward SAP ERP integration. Now accessing SAP RFC's from any JDBC client is as easy as querying a database.

How to connect to SAP Data from IntelliJ



Integrate connectivity to SAP data with wizards in IntelliJ.

The CData JDBC Driver for SAP enables you to access SAP as a JDBC data source, providing integration with rapid development tools in IDEs. This article shows how to use the data source configuration wizard to connect to SAP data in IntelliJ.

Create a JBDC Data Source for SAP

Follow the steps below to add the driver JAR and define connection properties required to connect to SAP data.

  1. In the Data Sources window, right-click and then click Add Data Source -> DB Data Source.
  2. In the Data Source Properties dialog that appears, the following properties are required:

    • JDBC Driver Files: Click the button next to this menu to add the JDBC Driver file cdata.jdbc.saperp.jar, located in the installation directory.
    • JDBC Driver Class: In this menu, select cdata.jdbc.saperp.SAPERPDriver from the list.
    • Database URL: Enter the connection URL in the JDBC URL property. The URL must start with jdbc:saperp: and includes connection properties separated with semicolons.

      The driver supports connecting to an SAP system using the SAP Java Connector (SAP JCo). Install the files (sapjco3.jar and sapjco3.dll) to the appropriate directory for the hosting application or platform. See the "Getting Started" chapter in the help documentation for information on using the SAP JCo files.

      In addition, you can connect to an SAP system using Web services (SOAP). To use Web services, you must enable SOAP access to your SAP system and set the Client, RFCUrl, User, and Password properties, under the Authentication section.

      For more information, see this guide on obtaining the connection properties needed to connect to any SAP system.

      Built-in Connection String Designer

      For assistance in constructing the JDBC URL, use the connection string designer built into the SAP JDBC Driver. Either double-click the JAR file or execute the jar file from the command-line.

      java -jar cdata.jdbc.saperp.jar

      Fill in the connection properties and copy the connection string to the clipboard.

      A typical JDBC URL is the following:

      jdbc:saperp:Host=sap.mydomain.com;User=EXT90033;Password=xxx;Client=800;System Number=09;ConnectionType=Classic;Location=C:/mysapschemafolder;

Edit and Save SAP Data

To discover schema information, right-click the data source you just created and click Refresh Tables. To query a table, right-click it and then click Open Tables Editor.