Basic Components

Micro Focus XDBC includes a database tool (mfdbcutil) that creates and populates a system catalog from your XFDs. A system catalog is where database systems store metadata that describes the structure of the database system itself, as well as the structure of specific tables. You can generate XFDs at compile time along with your COBOL object files.

After you run mfdbcutil, your COBOL data becomes like a relational database — a COBOL database — accessible to applications that issue SQL requests for data. After setup, your XFDs are expendable, unless you use them for another application.

When deployed, the basic components of a Micro Focus XDBC system include:

An ODBC and/or JDBC driver     Receives SQL requests from ODBC- or JDBC-enabled applications and routes them to the SQL processor.
An SQL processor Processes SQL requests, queries the driver, and returns results
A Micro Focus driver Provides access to the COBOL database
Your COBOL database
  • COBOL data files (indexed, fixed sequential, or relative)
  • A system catalog — A series of files that maps your COBOL data fields to database columns. Based on your XFDs, these files are themselves indexed files. The system catalog is a deployment piece and has no bearing on the COBOL developer

With Micro Focus XDBC, you can also use an SQL query tool, such as xdbcquery, to issue SQL requests for COBOL data directly. This bypasses the ODBC/JDBC layer altogether. xdbcquery comes with Micro Focus XDBC.

The following illustration depicts the basic components of Micro Focus XDBC:

BKXDXDARCH01-low.gif

A COBOL database is the system catalog and the COBOL files it describes (indexed, fixed sequential, and relative) that reside in one or more directories. For a given installation, you may have one or more COBOL databases. Only one database may be accessed by an application at one time; however, a single file may be a component of multiple databases.