JDBC Tutorials - Herong's Tutorial Examples - v3.14, by Herong Yang
Installing JNDI File System Service Provider
This section describes how to download and install File System Service Provider for JNDI.
Derby JDBC DataSource class can be used directly to create a connection as shown in the previous tutorial. But that's not the suggested way of getting a connection. JDBC document suggests you to create DataSource object and make it available through a directory service via JNDI. The application program can retrieve it whenever needed.
In order to try this method, I have to download and install the JNDI File System Service Provider package from Sun (now Oracle) as described below:
Open \local\fscontext\doc\providers\jndi-fs.html to read the documentation. The first paragraph gives you a good summary:
JNDI offers a universal naming API and a standardized way to store objects in a namespace. The file system service provider supports these features for a local or networked file system. Its purpose is two-fold:
- Allow clients to traverse the file system namespace using JNDI's context interface.
- Allow clients to store Java objects in the file system.
These two separate functions are actually handled by two different providers (i.e., classes). The first class handles accessing the file system and can be used independently of the second. The second class handles storage of Java objects and is used in conjunction with the first (i.e., it is a subclass of the first).
Table of Contents
JDBC (Java Database Connectivity) Introduction
Installing and Running Derby (Java DB)
►Derby (Java DB) JDBC DataSource Objects
Derby - Connection with DataSource Objects
Derby - Using ClientDataSource Directly
►Installing JNDI File System Service Provider
Derby - Storing ClientDataSource Objects on File System
Derby - Looking Up ClientDataSource Objects on File System
What Happens If Client JDBC DataSource JAR Is Missing?
Derby (Java DB) - DML Statements
Derby (Java DB) - ResultSet Objects of Queries
Derby (Java DB) - PreparedStatement
Summary of JDBC Drivers and Database Servers