- Sun Microsystems Driver Download 64-bit
- Sun Microsystems Driver Download
- Sun Microsystems Driver Download Windows 10
- Sun Microsystems Driver Download Win 7
- Sun Microsystems Driver Download Windows 7
Find Sun Microsystems software downloads at CNET Download.com, the most comprehensive source for safe, trusted, and spyware-free downloads on the Web. Sun microsystems free download - Sun Calculator, Full Sun, Command & Conquer: Tiberian Sun, and many more programs. SmartCardReader driver. Free Publisher: SCM Microsystems Downloads: 2,392. Discovery Webcam Driver Linux; PowerTools Lite; Cummins Inpower Software; Smart FLV Converter Pro; Tv Expert Sound Drivers. Free Downloads: Sun Microsystems. Manual Java download page for Linux. Get the latest version of the Java Runtime Environment (JRE) for Linux. Free drivers download for Sun Microsystems, Inc. 109 Keyboard, ID - USB VID0430&PID0002.
[Top][Prev][Next]Sun Microsystems Driver Download 64-bit
9.1 Obtaining a JDBC Driver
It is recommended that you obtain a commercial JDBC driver from a vendorsuch as your database vendor or your database middleware vendor. Check the list of drivers currently available.The JDBC-ODBC Bridge driver is recommended only for experimental use orwhen no other alternative is available.
9.2 JDBC-ODBC Bridge
If possible, use a Pure Java JDBC driver instead of the Bridge and an ODBC driver. This completely eliminates the client configuration required by ODBC. It also eliminates the potential that the Java VM could be corrupted by an error in the native code brought in by the Bridge (that is, the Bridge native library, the ODBC driver manager library, the ODBC driver library, and the database client library).The JDBC-ODBC Bridge driver is recommended for use in prototyping effortsand for cases where no other JDBC technology-based driver exists. If acommercial, all-Java JDBC driver is available, we recommend that it beused instead of the Bridge.
9.2.1 What Is the JDBC-ODBC Bridge?
The JDBC-ODBC Bridge is a JDBC driver that implements JDBC operations by translating them into ODBC operations. To ODBC it appears as a normal application program. The Bridge implements JDBC for any database for which an ODBC driver is available. The Bridge is implemented as thesun.jdbc.odbc
Java package and contains a native library used to access ODBC. The Bridge is a joint development of Merant and Java Software. 9.2.2 ODBC Compatibility and ODBC Versions Supported
On Solaris, the JDBC 2.0 bridge must be used with an ODBC 3.x driver manager. The bridge supports both ODBC 2.x and ODBC 3.x drivers, but has been testedwith only ODBC 3.x drivers.
On NT, the JDBC 2.0 bridge supports the ODBC 2.x and ODBC 3.x driver manager anddrivers. The JDBC 2.0 bridge has been tested only with an ODBC 3.x drivermanager and with both ODBC 2.x and 3.x drivers.
Merant recommends that the JDBC 2.0 bridge be used with version 3.5 orhigher of Merant's DataDirect ODBC drivers.
9.2.3 The Bridge Implementation
The Bridge is implemented in Java and uses Java native methods to call ODBC.9.2.4 Installation
The Bridge is installed automatically with the Java 2 SDK, Standard Edition,as packagesun.jdbc.odbc
. See your ODBC driver vendor for information on installing and configuring ODBC. No special configuration is required for the Bridge. See your database vendor for client installation and configuration information. On Solaris, some ODBC driver managers name their libs libodbcinst.so
and libodbc.so
. The Bridge expects these libraries to be named libodbcinst.so.1
and Sun Microsystems Driver Download
libodbc.so.1
, so symbolic links for these names must be created. 9.3 Using the Bridge
The Bridge is used by opening a JDBC connection using a URL with theodbc
subprotocol. See below for URL examples. Before a connection can be established, the bridge driver class, sun.jdbc.odbc.JdbcOdbcDriver
, must either be added to the java.lang.System
property named jdbc.drivers
, or it must be explicitly loaded using the Java class loader. Explicit loading is done with the following line of code: When loaded, the ODBC driver (like all good JDBC drivers) creates an instance of itself and registers this with the JDBC driver manager.
9.3.1 Using the Bridge from an Applet
JDBC used with a Pure Java JDBC driver works well with applets. The Bridge driver does not work well with applets.9.3.2 Most Browsers Do Not Support the Bridge
Since the Bridge is an optional component of the Java 2 SDK, Standard Edition,it may not be provided by a browser. Even if it is provided, only trusted applets (those allowed to write to files) will be able to use the Bridge. This is required in order to preserve the security of the applet sandbox. Finally, even if the applet is trusted, ODBC and the DBMS client library must be configured on each client.Sun Microsystems Driver Download Windows 10
9.3.3 Tested Configurations
From Solaris, we have used the Bridge to access Oracle 8.1.5 using version3.5 of Merant's ODBC drivers.From NT, we have used the Bridge to access SQL Server 6.x using the latestODBC driver from Microsoft.9.3.4 ODBC Drivers Known to Work with the Bridge
ODBC drivers are available for Oracle, Sybase, Informix, Microsoft SQLServer, and Ingres. The MERANT ODBC driver suite should be completely compatible with the JDBC-ODBC Bridge. To evaluate or purchase MERANT ODBC drivers, please contact MERANT DataDirect Sales at1-800-547-4000 Option 2 or via the World Wide Web athttp:www.merant.com
. The MS SQL Server driver has also been used successfully on NT. Many other ODBC drivers will likely work. 9.3.5 What Is the JDBC URL Supported by the Bridge?
The Bridge driver uses theodbc
subprotocol. URLs for this subprotocol are of the form: For example:
9.3.6 Debugging
The Bridge provides extensive tracing whenDriverManager
tracing is enabled. The following line of code enables tracing and sends it to standard out: Sun Microsystems Driver Download Win 7
9.4 New JDBC 2.0 API Features Supported by the Bridge
The JDBC-ODBC Bridge driver in this release supports the following new featuresin the JDBC 2.0 API:
- batch updates
- updatable result sets
- scrollable result sets
- the new
BigDecimal
methods - the new
Date
,Time
, andTimestamp
methods
The current release of the Bridge supports multi-threaded ODBC driversand contains numerous bug fixes.