Understanding JBuilder database applications

Understanding JBuilder database applications

A database application is any application that accesses stored data and allows you to view and perhaps modify or manipulate that data. In most cases, the data is stored in a database. However, data can also be stored in files as text, or in some other format. JBuilder allows you to access this information and manipulate it using properties, methods, and events defined in the DataSet packages of the JavaBeans Component Library (JBCL).

A database application that requests information from a data source such as a database is known as a client application. A DBMS (Database Management System) that handles data requests from various clients is known as a server application.

JBuilder's DataExpress architecture is focused on building all-Java client/server applications and applets for the inter- or intranet. Because applications you build in JBuilder are all-Java at run time, they are cross-platform.

JBuilder applications communicate with database servers through the JDBC API, the JavaSoft database connectivity specification. JDBC is the all-Java industry standard API for accessing and manipulating database data. JBuilder database applications can connect to any database that has a JDBC driver.

The following diagram illustrates a typical database application and the layers from the client JBuilder DataExpress database application to the data source:

The major components in a database application are:

The next section discusses the JBuilder DataExpress architecture in more detail.