New Fire Server supports JDBC connection to major databases. The following databases are certified with JDBC 2.0 drivers.
| Database Servers | Vendor | Database Driver | Database URL |
|---|---|---|---|
| Oracle 9.2.0.1*, 10.2.0.1 | Oracle Corporation | oracle.jdbc.driver.OracleDriver
|
jdbc:oracle:thin:@localhost:1521:databasename
|
| Oracle 9.2.0.1*, 10.2.0.1 | Oracle Corporation | oracle.jdbc.OracleDriver
|
jdbc:oracle:oci:@databasename
|
| Oracle7*, 8 | Oracle Corporation | oracle.jdbc.driver.OracleDriver
|
jdbc:oracle:thin:@localhost:1521:databasename
|
| Microsoft SQL Server 6.5, 7*, 2000* | i-net Software | com.inet.tds.TdsDriver
|
jdbc:inetdae:localhost:1433
|
| Microsoft SQL Server 2000* | www.microsoft.com | com.microsoft.jdbc.sqlserver.SQLServerDriver
|
jdbc:microsoft:sqlserver://localhost:1433
|
| Microsoft SQL Server 2000* | New Atlanta | JTurbo 2.0, see its download package for instruction. | Do not use sql70=ture flag in URL. |
| Microsoft SQL Server 2000* | JDBC-ODBC
Bridge Driver provided by Sun (This driver is already included in New Fire Server) |
sun.jdbc.odbc.JdbcOdbcDriver
|
jdbc:odbc:databasename
|
| Microsoft SQL Server 2000* | ThinWeb | com.thinweb.tds.Driver
|
jdbc:twtds:sqlserver://localhost/databasename
|
| Sybase Adaptive Server Enterprise, Sybase Adaptive Server Anywhere* | Sybase, Inc | com.sybase.jdbc2.jdbc.SybDriver
|
jdbc:sybase:Tds:localhost:2638
|
| Informix Dynamic Server* | Informix Corporation | com.informix.jdbc.IfxDriver
|
jdbc:informix-sqli://localhost:port/databasename:informixserver=servername
|
| IBM DB2 (for Windows NT*) | IBM | COM.ibm.db2.jdbc.app.DB2Driver
|
jdbc:db2:databasename |
| MySQL 4.1.7* (on Windows), 5.0.27* (on Linux) |
MySQL AB | com.mysql.jdbc.Driver
|
jdbc:mysql://localhost/databasename?characterEncoding=utf8
|
| QED 3.4* | Quadcap Software | com.quadcap.jdbc.JdbcDriver
|
jdbc:qed:../data/QED.database;create=true;isCaseSensitive=false
|
| PostgreSQL 7.4.2* (on Linux); 8.2.3* (on Windows) |
PostgreSQL | org.postgresql.Driver
|
jdbc:postgresql://localhost:5432/databasename
|
* The database on which we tested.
You can obtain these drivers from their vendors or you may also use other JDBC driver and database server combinations if available.
This user must have CREATE TABLE, DROP TABLE, ALTER TABLE privilege.
| Database | Notes |
|---|---|
| Oracle | SQL to create a user:
|
| Sybase | Create a user which
|
| Microsoft SQL Server | User must have access to its default
database with public and db_owner database roles. On SQL Server 2000, you must use SQL Server authentication and not windows authentication. This option is set during SQL Server installation. We had difficulty changing this option from SQL Server Properties/Security after the installation. |
Database can be installed on the same host which you install New Fire software. It can also be installed on a separate host in the network.
| Database | Note |
|---|---|
| Oracle | Oracle TNS listener must be started |
| Sybase | Sybase database must be started as
Network Database Server if the database is installed on a
separate host/machine. To make JDBC connection successful, you must install jConnect Meta-data Support during or after database creation. |
| Database | Configuration Notes |
|---|---|
| Microsoft SQL Server 2000 |
|