Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Informix database on SCO 1

Status
Not open for further replies.

keenanbr

Programmer
Oct 3, 2001
469
IE
how can i access an informix database on a sco unix machine from my windows workstation (indeed how do i access from the sco system)?
 
First download a JDBC driver for informix database. Then set the classpath. Then code away...Something like below..

I can't remember if you have to set the DSN in WINDOWS...

Class.forName ("com.informix.jdbc.IfxDriver");

con = DriverManager.getConnection ("jdbc:informix-sqli://host:port:informixserver=server;user=xxxx;password=xxxxx");
stmnt = con.createStatement ();

Also for more information on this I found the following from google:

Hope this helps
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top