mojtaba
mojtaba

Reputation: 1

How can I connect to SUPRA database from a Java application, without the supported JDBC driver

I want to work supra database and my application is written in Java. I need use tje Java JDBC for connect supra. We use lib and jar file for connect to another database like Mysql and Oracle. Is there a tool or lib to connect supra database?
- java application running on linux
- supra database running on zos IBM(mainframe)

What are the steps to do this?

As a further requirement, I do not have a Cincom support contract, and so can't use the normal JDBC driver. Rather, I need a free or open source JDBC driver.

Upvotes: 0

Views: 539

Answers (1)

AllTooSir
AllTooSir

Reputation: 49402

You can connect to the Supra DB using plain JDBC . Refer this for more.

JDBC 3.0 Driver is a major new release and includes enhancements for:

  1. Support of the JDBC 3.0 API. New supported interfaces are: DataSource,
  2. ConnectionPoolDataSource, PooledConnection, and ParameterMetaData.
  3. Support and documentation for running with IBM Websphere
  4. Use of a single ini file: SupraSQLDriver.ini
  5. Enhanced tracing and the ability to set call interface trace options
  6. Standardization of SQLCODEs issued from the JNI layer
  7. Changed return handling for some methods

Upvotes: 1

Related Questions