How to connect to an outdated Informix database?

I need to connect my application to the database of an outdated Informix 7.2 database.

From what I was able to find out, theoretically there should be a database service on the 50,000 server. The problem is that I cannot find the database service in the Operating System.

For now, I can use dbaccess and execute requests from the command line.

I would like to use a database driver (e.g. http://code.google.com/p/ibm-db/ ), so my application can connect and query the database with the cursor, but since I cannot find the database service apparently I can’t ...

Am I missing something? Are there options that I am not considering?

Is it possible to have an Informix database in which dbaccess is the only interface?

+3
source share
3 answers

If you use Python, you can look at: Python wiki , but I would like to expand it a bit.

If you are running Windows and have a client SDK, the ODBC driver must be installed on your computer. There is also Linux and other Unix versions of such client software. If you install this, you can use ODBC to connect to the database. On Windows, you can use Active State Python 2.6 with win32 extensions with the module enabled odbc. In other Python implementations, you can use win32 extensions or another ODBC module, for example mxODBC.

Jython, JDBC ODBC. " " SO-, : Money Informix JDBC

+1

Informix

+2

BTW, Informix Python Mac, pypyodbc-informixcsdk () . .

Windows pyodbc + Informix Client SDK + ODBC .

+1

Source: https://habr.com/ru/post/1745433/


All Articles