Ready to get started?

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

 Download Now

Learn more:

Basecamp Icon Basecamp JDBC Driver

Rapidly create and deploy powerful Java applications that integrate with Basecamp including Projects, People, Documents, Messages, and more!

Connect to Basecamp Data in JRuby



Create a simple JRuby app with access to live Basecamp data.

JRuby is a high-performance, stable, fully threaded Java implementation of the Ruby programming language. The CData JDBC Driver for Basecamp makes it easy to integrate connectivity to live Basecamp data in JRuby. This article shows how to create a simple JRuby app that connects to Basecamp data, executes a query, and displays the results.

Configure a JDBC Connection to Basecamp Data

Before creating the app, note the installation location for the JAR file for the JDBC Driver (typically C:\Program Files\CData\CData JDBC Driver for Basecamp\lib).

JRuby natively supports JDBC, so you can easily connect to Basecamp and execute SQL queries. Initialize the JDBC connection with the getConnection function of the java.sql.DriverManager class.

Basecamp uses basic or OAuth 2.0 authentication. To use basic authentication you will need the user and password that you use for logging in to Basecamp. To authenticate to Basecamp via OAuth 2.0, you will need to obtain the OAuthClientId, OAuthClientSecret, and CallbackURL connection properties by registering an app with Basecamp.

See the Getting Started section in the help documentation for a connection guide.

Additionally, you will need to specify the AccountId connection property. This can be copied from the URL after you log in.

Built-in Connection String Designer

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

java -jar cdata.jdbc.basecamp.jar

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

Below is a typical JDBC connection string for Basecamp:

jdbc:basecamp:User=test@northwind.db;Password=test123;

Create a JRuby App with Connectivity to Basecamp Data

Create a new Ruby file (for example: BasecampSelect.rb) and open it in a text editor. Copy the following code into your file:

require 'java' require 'rubygems' require 'C:/Program Files/CData/CData JDBC Driver for Basecamp 2018/lib/cdata.jdbc.basecamp.jar' url = "jdbc:basecamp:User=test@northwind.db;Password=test123;" conn = java.sql.DriverManager.getConnection(url) stmt = conn.createStatement rs = stmt.executeQuery("SELECT Name, DocumentsCount FROM Projects") while (rs.next) do puts rs.getString(1) + ' ' + rs.getString(2) end

With the file completed, you are ready to display your Basecamp data with JRuby. To do so, simply run your file from the command line:

jruby -S BasecampSelect.rb

Writing SQL-92 queries to Basecamp allows you to quickly and easily incorporate Basecamp data into your own JRuby applications. Download a free trial today!