Reputation: 108
What's the best way to connect to a Informix database from .Net?
I'm developing a client-server application based on a legacy Informix DB which used to be connected by JDBC.
I need it, from the most important to the least:
Thanks in advance for your help.
Upvotes: 4
Views: 12626
Reputation: 97839
The connections strings to use with OleDb or ADO.NET can be found here.
Take a look at this article on how to connect to an Informix database using ADO.NET.
Upvotes: 5
Reputation: 76
You might like to investigate OpenLink's Multi-Tier Informix driver for ADO.Net (just install everything on the client): http://uda.openlinksw.com/dotnet/mt/dotnet-informix-mt/
Upvotes: 0
Reputation: 3525
We connect to Informix from .NET, but we do it via web services that are written in FourJ's BDL
Upvotes: 1
Reputation: 103742
See if that helps. Also, what about the built in ODBC or OLEDB drivers? Have you tried those? Those might work.
Upvotes: 0