Discover how a bimodal integration strategy can address the major data management challenges facing your organization today.
Get the Report →Connect to SharePoint Excel Services Data in JRuby
Create a simple JRuby app with access to live SharePoint Excel Services data.
JRuby is a high-performance, stable, fully threaded Java implementation of the Ruby programming language. The CData JDBC Driver for SharePoint Excel Services makes it easy to integrate connectivity to live SharePoint Excel Services data in JRuby. This article shows how to create a simple JRuby app that connects to SharePoint Excel Services data, executes a query, and displays the results.
Configure a JDBC Connection to SharePoint Excel Services 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 SharePoint Excel Services\lib).
JRuby natively supports JDBC, so you can easily connect to SharePoint Excel Services and execute SQL queries. Initialize the JDBC connection with the getConnection function of the java.sql.DriverManager class.
The URL, User, and Password properties, under the Authentication section, must be set to valid credentials for SharePoint Online, SharePoint 2010, or SharePoint 2013. Additionally, the Library property must be set to a valid SharePoint Document Library and the File property must be set to a valid .xlsx file in the indicated Library.
Built-in Connection String Designer
For assistance in constructing the JDBC URL, use the connection string designer built into the SharePoint Excel Services JDBC Driver. Either double-click the JAR file or execute the jar file from the command-line.
java -jar cdata.jdbc.excelservices.jar
Fill in the connection properties and copy the connection string to the clipboard.
Below is a typical JDBC connection string for SharePoint Excel Services:
jdbc:excelservices:URL=https://myorg.sharepoint.com;[email protected];Password=password;File=Book1.xlsx;
Create a JRuby App with Connectivity to SharePoint Excel Services Data
Create a new Ruby file (for example: ExcelServicesSelect.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 SharePoint Excel Services 2018/lib/cdata.jdbc.excelservices.jar'
url = "jdbc:excelservices:URL=https://myorg.sharepoint.com;[email protected];Password=password;File=Book1.xlsx;"
conn = java.sql.DriverManager.getConnection(url)
stmt = conn.createStatement
rs = stmt.executeQuery("SELECT Name, AnnualRevenue FROM Account")
while (rs.next) do
puts rs.getString(1) + ' ' + rs.getString(2)
end
With the file completed, you are ready to display your SharePoint Excel Services data with JRuby. To do so, simply run your file from the command line:
jruby -S ExcelServicesSelect.rb
Writing SQL-92 queries to SharePoint Excel Services allows you to quickly and easily incorporate SharePoint Excel Services data into your own JRuby applications. Download a free trial today!