![]() |
![]() |
|
|
![]() |
![]() |
Communicator 3000 MPE/iX Express 1 Based on Release 6.0: HP 3000 MPE/iX Computer Systems > Chapter 3 Technical Articles ![]() HP Driver for JDBC |
|
Shu-Feng Wei Commercial Systems Division Java Database Connectivity (JDBC) is a Java API that enables development of Java applications and applets with a wide range of relational databases. It consists of a set of classes and interfaces written in Java. JDBC allows developers to write database applications using a standard, pure Java API. A typical JDBC Java application consists of a Java application or applet, the JDBC Driver Manager, a vendor specific JDBC driver, and a database. The JDBC Driver Manager is provided with the Java SDK and its primary function is to load and register the vendor-specific JDBC driver with the Java applications and then get out of the way. The following diagram shows the various components of a client-server JDBC application. The HP Driver for JDBC is a vendor specific JDBC Driver that allows Java applications to connect to ALLBASE/SQL or IMAGE/SQL databases on MPE/iX or ALLBASE/SQL on HP-UX. The HP Driver for JDBC is a Type 3 (Network-Protocol) driver, meaning the driver translates the JDBC API into a DBMS-independent protocol on the client-side, and then translates to the ALLBASE/SQL protocol on the server. The driver components on the client-side are written in 100% Pure Java, which provides the complete compatibility with all Java Virtual Machines on all platforms. There are three components supplied with the HP JDBC product, the JDBC Driver, the JDBC Monitor, and the JDBC Server. The user is responsible for writing a Java application or applet that uses JDBC on the client, as well as providing the ALLBASE/SQL or IMAGE/SQL database on the server.
Both the JDBC Monitor and the JDBC Server must be installed on the same host where the ALLBASE/SQL or IMAGE/SQL databases reside. The HP JDBC Client components (the JDBC driver itself) require a Sun-compliant JDK version 1.1 and above, which includes a JDBC version 1.2. Install the JDK from Sun or from your platform vendor. Individual platform vendors may have their own requirements for the platform host. For example, Java only runs on HP-UX 10.20 and MPE/iX 6.0 and above, HP-UX 9.x and MPE/iX 5.5 is not supported. Java and JDK components only need to be installed on the client platform. The JDBC server platforms use native components and must be installed on the same host where the ALLBASE/SQL or IMAGE/SQL databases reside. The HP JDBC Server components require HP-UX version 10.20 or greater. HP-UX components are only required if your JDBC Server platform is the HP-UX operating system. The installation of the JDBC Server components must be done by a system administrator who has "root" capability on the server host where the database resides. A temporary directory, /tmp/jdbc, is used to stage the user manual, installation scripts, and product tar file. The server components are distributed as a UNIX tape archive (TAR) file, hpjdbc_XXX.tar, where XXX represents the release number of the product. Once the tar file is copied into a staging directory, /tmp/jdbc, extract the installation shell script from the tar file: $ tar xf hpjdbc_XX.tar install.sh The installation of the HP JDBC product must be done by a system administrator on the server host where the database resides. The components of HP JDBC are distributed as an archive file, HFSFILES.JDBC.SYS. Stream the JDBC installation job I00IJDBC, to perform the actual installation: :stream I00IJDBC.JDBC.SYS The installation script will extract the server files and client archive files and set up the JDBC monitor startup scripts. The HP JDBC product must first be installed on the server host before the client can be installed. This is because the client files are bundled with the server product. The HP Driver for JDBC components consist of the Driver Java class files and a sample JDBC client source file. These are the only components required on the client-side. The driver components are packaged in three formats (the same files contents are in each package), UNIX tape archive (TAR), Java archive (JAR), and Windows ZIP (ZIP). Setting up HP Driver for JDBC client involves:
The HP Driver for JDBC class files must be installed in your Java class path so that the Java compiler and the Java class loader can find them. CLASSPATH=C:\JDK1.1.4\LIB;. You would then install the HP Driver for JDBC class files in the directory: C:\JDK1.1.4\LIB\ CLASSPATH=/usr/local/java/latest/lib:. In order to use the HP Driver for JDBC client on the MPE/iX system, you need to have the JAVA/iX installed. JAVA/iX is shipped with MPE/iX starting in Release 6.0. The following sub-directories for the Driver class files should be automatically created: com/hp/jdbc/allbase com/hp/jdbc/allbase/samples The HP JDBC Server components behave the same on both the HP-UX and MPE/iX platforms. Thus both the configuration file and log file are the same (except for filenames). The following example shows the standard HP JDBC default server configuration file, servcfg. This is a text file that resides on the server host in the same directory as the HP JDBC Server executable files and can be used to alter some of the server's behavior. LOGFILE /opt/allbase/jdbc/logs/servlog TIMEOUT 7200 #LOGGING ERROR #LOGGING CONNECTION #LOGGING INFO #LOGGING WARNING #LOGGING FATAL #LOGGING IN #LOGGING OUT #LOGGING INHEX #LOGGING OUTHEX #LOGGING DEBUG #LOGGING TIMESTAMP LOGGING NONE # If LOGGING NONE is not commented out, it must be the # last line for it to have the desired effect. The first configuration option LOGFILE refers to the path and filename for the HP JDBC Server log file. On HP-UX this is normally set to /opt/allbase/jdbc/logs/servlog. On MPE/iX this is normally set to SERVLOG.JDBC.SYS. The second configuration option TIMEOUT specifies the number of seconds that the HP JDBC Server can remain idle before terminating. The next set of lines are the LOGGING levels used to determine the type of information to be logged to the server log file. The meanings of the various logging levels are discussed in the Troubleshooting Section, under "Server Logging" of the HP Driver for JDBC User's Manual. The server configuration file is read in each time a new server process is started. Thus once the file is edited and saved, the changes will take place beginning with the next server process. If logging is turned on in this file, it will be in effect for all subsequent server processes. HP JDBC Monitor is the server-side counterpart of HP Driver for JDBC, present on the client-side. For a JDBC application to connect to a database, the JDBC Monitor must be running on the database server. JDBC Monitor can be started manually or automatically at system startup by including the JDBC Monitor start commands in the system startup scripts. The startup and shutdown of the HP-UX JDBC Monitor is normally controlled by the system startup and shutdown scripts. Thus as long as the machine is up and running, the JDBC Monitor will also be up. The only time the Monitor should ever be brought down is to install a newer version. In this case, use the monctrl command to kill the Monitor process. Do not use the UNIX kill command, as this could render the server unable to start a new Monitor process. The monctrl command to shut down the monitor is: monctrl kill [portnumber] The portnumber parameter is necessary only if the monitor you wish to shut down is not running on the default port number 31700. To restart the monitor after it has been accidentally terminated or was shut down, use the monctrl command to start it up: monctrl start [portnumber] Again, the portnumber parameter is necessary only if you wish to start the monitor on a port number other than the default port number 31700. You cannot start a monitor on the same port number as a currently running monitor. You also can not restart a monitor on its original port number until all child processes that were spawned by the previous monitor process are terminated, and the port released. If the monitor is intentionally terminated or accidentally terminates, all of its child processes must be terminated before it can be restarted. For this reason, the monitor must not be terminated by using the UNIX kill command. Always use the monctrl tool to kill the monitor. The tool will search out all the child processes and kill them first, before killing the monitor. The startup and shutdown of the MPE/iX HP JDBC Monitor is normally done by the startup and shutdown stream jobs, JSTRTMON and JSTOPMON, which are normally included in MPE/iX system startup and shutdown scripts. Thus as long as the machine is up and running, the JDBC Monitor will also be up. The only time the monitor should ever be brought down is to install a newer version. In this case, use the JSTOPMON stream job or ABORTJOB command to kill the monitor process. The ABORTJOB command to shut down the monitor is: : ABORTJOB #JXX where XX is the job number. To restart the monitor after it was shut down or accidentally terminated, use the JSTRTMON stream job to start it up. : STREAM JSTRTMON.JDBC.SYS On the MPE/iX platform, each client connection is serviced by a separate process that is in the same session as the monitor. Thus, if the monitor is terminated or dies, the existing server process already serving the client requests will also die. This could result in client applications experiencing dropped connections. Before the HP Driver for JDBC can be used, the Java class path must be set to include the HP Driver for JDBC class files. Without this setting, both the Java compiler and the Java Run Time Environment will not be able to locate the HP Driver for JDBC. Please refer to your JDK documentation for more explicit details as to how to set the Java class path. In general, the Java class path must include the directory in which the HP Driver for JDBC class files have been installed. If the HP Driver for JDBC class files are installed in: /opt/java/lib/com/hp/jdbc/allbase then the Java class path must include the directory: /opt/java/lib In most cases, this would mean that the CLASSPATH environment variable must be set to something resembling: The HP Driver for JDBC comes with the source code to two JDBC applications, a sample client and a simple client. Both can be used to test the installation of JDBC components on the client and server. The simple client is called SimpleClient and is a bare-bones text-based application that makes a connection to an ALLBASE/SQL or IMAGE/SQL database, and allows the user to send SQL statements and retrieve the results. There are no frills in the application, to make the code as simple as possible. This client should mainly be used for educational purposes. The rest of this discussion will focus on the more robust application. The sample client is called SampleClient and is a more robust version of the simple client. It shows how to use a dialog box to obtain user input, and also formats the result set output a lot better. The first step to using the sample client is to build it by compiling the Java source code. Normally, you would do this by using the Java compiler command (the command you use may be different, depending on your JDK):
javac SampleClient.java To run the sample client, follow the instructions provided with your Java SDK for your client platform. Make sure that your Java CLASSPATH includes the directory in which the HP Driver for JDBC class files have been installed, so that the Java Virtual Machine is able to load them. For most platforms, the command to run the sample client is: java SampleClient [-w] [-t] Follow the prompts given by the application to connect to your database and to execute SQL statements. The sample client can be used as a starting point for developing your own applications or for troubleshooting connection problems with the database. The Java method that is used to load all JDBC drives is the class.forName method. To load the HP Driver for JDBC, the code is: class.forName("com.hp.jdbc.allbase.JdbcDriver"); This loads the HP Driver for JDBC and registers it with the JDBC Driver Manager. Once a driver has been loaded and registered with the Driver Manager, it is ready to be used to connect to a database. The first connection method specifies all connection parameters, including the user name and password, in an URL string. java.sql.DriverManager.getConnection(url) where:
The second connection method specifies the user id and password as method arguments, so this information is not present in the URL. java.sql.DriverManager.getConnection(url, uid, pwd) where:
Table 3-1 “Data Type Mapping” shows what the HP Driver for JDBC will report as the JDBC data type for each ALLBASE/SQL data type. These are the java.sql.Types values that will be returned from the java.sql.ResultSetMetaData.getColumnType method. An "X" in the column indicates the data type mapping. Table 3-1 Data Type Mapping
Table 3-2 “Data Type Conversions” shows the supported data type conversions between ALLBASE/SQL and JDBC. For conversions from JDBC to Java, please refer to a JDBC book or the Java JDBC documentation. Those conversions are generic to all JDBC Drivers. Suggested conversions are denoted by a capital letter "X" in the conversion grid. Conversions which are supported, but which may result in a loss of precision, overflow, or rounding, are denoted by a lowercase letter "x" in the conversion grid. Table 3-2 Data Type Conversions
The conversion of any ALLBASE/SQL data type to the java.sql.Types.BIT data type is such that only the value of zero, in either numeric or character format, will be converted to the java.sql.Types.BIT value of 0. All other values will be converted to the java.sql.Types.BIT value of 1. Thus only the integer value 0, the floating-point value 0.0, the decimal value 0 (not 0.0), and the character string "0" will be converted to a bit value of 0. Everything else is converted to a bit value of 1. The conversion of an ALLBASE/SQL data type to a JDBC data type that has a smaller degree of precision (such as conversion from ALLBASE/SQL INTEGER to java.sql.Types.SMALLINT) will follow the Java VM rules of casting one data type to another. This may result in different values on different Java platforms. There is also no warning generated when this occurs. It is up to the application developer to choose the appropriate JDBC data type. The conversion of an ALLBASE/SQL character data type to a JDBC numeric data type uses the Java numeric conversion routines and any necessary numeric casting. Thus this could result in a java.lang.NumberFormatException being shown when the conversion is performed. Again, the application developer should take the necessary precautions. The ALLBASE LONG BINARY, and LONG VARBINARY data types are currently not supported by the HP Driver for JDBC. The HP JDBC Server will accept either ODBC SQL statement syntax or ALLBASE/SQL statement syntax. All SQL statements are first parsed for ODBC 2.0 SQL syntax. If the statement conforms to the ODBC 2.0 SQL syntax, it is translated to ALLBASE/SQL before being passed to the ALLBASE/SQL DBMS. If the statement does not conform to the ODBC 2.0 SQL syntax rules, it is assumed to be an ALLBASE/SQL statement, and is passed without modification to the ALLBASE/SQL SQL DBMS. Table 3-3 “Unsupported Statements” shows a list of unsupported ALLBASE/SQL statement types in HP JDBC. Note that in many cases, JDBC provides a standardized method of performing the same action. For example, the ALLBASE/SQL "COMMIT WORK" statement is not supported, since the user should be using the java.sql.Connection.commit method. Table 3-3 Unsupported Statements
The HP Driver for JDBC supports the use of parameterized SQL statements through the java.sql.PreparedStatement interface. The SQL statements must use a question mark (?) as the marker character for passing the parameters. For example, a SELECT statement with parameters in the where clause would look like: SELECT NAME, ADDRESS FROM ADDRBOOK WHERE NAME=? Another example is an INSERT statement: INSERT INTO ADDRBOOK(NAME, ADDRESS) VALUES (?,?) The HP Driver for JDBC supports the following types of ALLBASE/SQL stored procedures through the java.sql.CallableStatement interface:
Tracing of the HP Driver for JDBC client class files is invoked by adding tracing commands to the connection URL. The connection URL can be altered to both invoke tracing and to control the type of information that is traced. The tracing information is sent to a Java stream, which must be specified by the application using the java.sql.DriverManager.setLogStream method. Both the tracing level and tracing output must be specified before any tracing can be done. Note that the use of tracing will impact performance of the application. The greater the detail in the tracing, the slower the performance of the application. The URL syntax to invoke tracing is: "jdbc:allbase://server[:port]/database?TRACE=trace" where trace is any vertical bar (|) separated combination of the values:
For example, the URL to turn on tracing of all connections with time stamp information would be:
Do not user any space characters between tracing levels and the vertical bar separator as some browsers and web servers do not allow space characters in a URL.
The server configuration file controls logging of the JDBC Server. The following is a list of the various logging levels that can be set in the server configuration file.
|
![]() |
||
![]() |
![]() |
![]() |
|||||||||
|