R – Informix ODBC Connection Help

informixnetodbc

I have a development project that requires us to be able to support informix data sources via ODBC. I've downloaded the prebuilt Informix Virtual Appliance from the IBM website and am able see the server with the built in tools, but haven't been able to get at it from an ODBC connection on the client!

I have the ODBC support package installed also, and know that the driver is installed.

I've never really worked with Informix, so I don't know if there's some trick to it that I am missing, but if anyone has any suggestions, I'll take 'em.

Best Answer

Here are the Informix ConnectionStrings on my favorite site for such references:

http://www.connectionstrings.com/informix

OleDb:

Provider=Ifxoledbc;Data Source=dbName@serverName;User ID=myUsername;Password=myPassword;

OleDb with security info in the connection string:

Provider=Ifxoledbc;Data Source=dbName@serverName;User ID=myUsername;Password=myPassword;Persist Security Info=true;
Related Topic