Ready to get started?

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

 Download Now

Learn more:

xBase-Compatible Databases Icon xBase JDBC Driver

Rapidly create and deploy powerful Java applications that integrate with xBase-compatible database engines like FoxPro & Clipper (.dbf, .ndx, .ntx, .dbt, etc).

Create a Data Access Object for xBase Data using JDBI



A brief overview of creating a SQL Object API for xBase data in JDBI.

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 xBase integrates connectivity to live xBase data in Java applications. By pairing these technologies, you gain simple, programmatic access to xBase data. This article walks through building a basic Data Access Object (DAO) and the accompanying code to read xBase data.

Create a DAO for the xBase Invoices Entity

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 MyInvoicesDAO { //request specific data from xBase (String type is used for simplicity) @SqlQuery("SELECT Total FROM Invoices WHERE Class = :class") String findTotalByClass(@Bind("class") String class); /* * close with no args is used to close the connection */ void close(); }

Open a Connection to xBase

Collect the necessary connection properties and construct the appropriate JDBC URL for connecting to xBase.

The DataSource property must be set to the name of the folder that contains the .dbf files. Specify the IncludeFiles property to work with xBase table files having extensions that differ from .dbf. Specify multiple extensions in a comma-separated list.

Built-in Connection String Designer

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

java -jar cdata.jdbc.xbase.jar

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

A connection string for xBase will typically look like the following:

jdbc:xbase:DataSource=MyDBFFilesFolder;

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:xbase:DataSource=MyDBFFilesFolder;"); MyInvoicesDAO dao = dbi.open(MyInvoicesDAO.class); //do stuff with the DAO dao.close();

Read xBase Data

With the connection open to xBase, simply call the previously defined method to retrieve data from the Invoices entity in xBase.

//disply the result of our 'find' method String total = dao.findTotalByClass("ASSET"); System.out.println(total);

Since the JDBI library is able to work with JDBC connections, you can easily produce a SQL Object API for xBase by integrating with the CData JDBC Driver for xBase. Download a free trial and work with live xBase data in custom Java applications today.