Ready to get started?

Download a free trial of the FTP Driver to get started:

 Download Now

Learn more:

FTP Icon FTP JDBC Driver

An easy-to-use database-like interface for Java based applications and reporting tools access to remote files and directories.

How to connect to FTP Data from IntelliJ



Integrate connectivity to FTP data with wizards in IntelliJ.

The CData JDBC Driver for FTP enables you to access FTP 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 FTP data in IntelliJ.

Create a JBDC Data Source for FTP

Follow the steps below to add the driver JAR and define connection properties required to connect to FTP 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.ftp.jar, located in the installation directory.
    • JDBC Driver Class: In this menu, select cdata.jdbc.ftp.FTPDriver from the list.
    • Database URL: Enter the connection URL in the JDBC URL property. The URL must start with jdbc:ftp: and includes connection properties separated with semicolons.

      To connect to FTP or SFTP servers, specify at least RemoteHost and FileProtocol. Specify the port with RemotePort.

      Set User and Password to perform Basic authentication. Set SSHAuthMode to use SSH authentication. See the Getting Started section of the data provider help documentation for more information on authenticating via SSH.

      Set SSLMode and SSLServerCert to secure connections with SSL.

      The data provider lists the tables based on the available folders in your FTP server. Set the following connection properties to control the relational view of the file system:

      • RemotePath: Set this to the current working directory.
      • TableDepth: Set this to control the depth of folders to list as views.
      • FileRetrievalDepth: Set this to retrieve and list files recursively from the root table.

      Stored Procedures are available to download files, upload files, and send protocol commands. See the Data Model chapter of the FTP data provider documentation for more information.

      Built-in Connection String Designer

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

      java -jar cdata.jdbc.ftp.jar

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

      A typical JDBC URL is the following:

      jdbc:ftp:RemoteHost=MyFTPServer;

Edit and Save FTP 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. You can also modify records in the Table Editor.