![]() |
VOOZH | about |
JDBI is a SQL convenience library for Java that exposes two different style APIs, a fluent style and a SQL object style. The CData JDBC Driver for BigCommerce integrates connectivity to live BigCommerce data in Java applications. By pairing these technologies, you gain simple, programmatic access to BigCommerce data. This article explains how to build a basic Data Access Object (DAO) and the accompanying code to read and write BigCommerce data.
The interface below declares the desired behavior for the SQL object to create a single method for each SQL statement to be implemented.
public interface MyCustomersDAO {
//insert new data into BigCommerce
@SqlUpdate("INSERT INTO Customers (FirstName, LastName) values (:firstName, :lastName)")
void insert(@Bind("firstName") String firstName, @Bind("lastName") String lastName);
//request specific data from BigCommerce (String type is used for simplicity)
@SqlQuery("SELECT LastName FROM Customers WHERE FirstName = :firstName")
String findLastNameByFirstName(@Bind("firstName") String firstName);
/*
* close with no args is used to close the connection
*/
void close();
}
Collect the necessary connection properties and construct the appropriate JDBC URL for connecting to BigCommerce.
BigCommerce authentication is based on the standard OAuth flow. To authenticate, you must initially create an app via the Big Commerce developer platform where you can obtain an OAuthClientId, OAuthClientSecret, and CallbackURL. These three parameters will be set as connection properties to your driver.
Additionally, in order to connect to your BigCommerce Store, you will need your StoreId. To find your Store Id please follow these steps:
For assistance in constructing the JDBC URL, use the connection string designer built into the BigCommerce JDBC Driver. Either double-click the JAR file or execute the jar file from the command-line.
java -jar cdata.jdbc.bigcommerce.jar
Fill in the connection properties and copy the connection string to the clipboard.
👁 Using the built-in connection string designer to generate a JDBC URL (Salesforce is shown.)A connection string for BigCommerce will typically look like the following:
jdbc:bigcommerce:OAuthClientId=YourClientId; OAuthClientSecret=YourClientSecret; StoreId='YourStoreID'; CallbackURL='http://localhost:33333';InitiateOAuth=GETANDREFRESH;
Use the configured JDBC URL to obtain an instance of the DAO interface. The particular method shown below will open a handle bound to the instance, so the instance needs to be closed explicitly to release the handle and the bound JDBC connection.
DBI dbi = new DBI("jdbc:bigcommerce:OAuthClientId=YourClientId; OAuthClientSecret=YourClientSecret; StoreId='YourStoreID'; CallbackURL='http://localhost:33333';InitiateOAuth=GETANDREFRESH;");
MyCustomersDAO dao = dbi.open(MyCustomersDAO.class);
//do stuff with the DAO
dao.close();
With the connection open to BigCommerce, simply call the previously defined method to retrieve data from the Customers entity in BigCommerce.
//disply the result of our 'find' method
String lastName = dao.findLastNameByFirstName("Bob");
System.out.println(lastName);
It is also simple to write data to BigCommerce, using the previously defined method.
//add a new entry to the Customers entity dao.insert(newFirstName, newLastName);
Since the JDBI library is able to work with JDBC connections, you can easily produce a SQL Object API for BigCommerce by integrating with the CData JDBC Driver for BigCommerce. Download a free trial and work with live BigCommerce data in custom Java applications today.
Download a free trial of the BigCommerce Driver to get started:
Download NowLearn more:
👁 BigCommerce IconRapidly create and deploy powerful Java applications that integrate with BigCommerce Ecommerce Software