Mar 13, 2003 #1 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)?
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)?
Mar 13, 2003 1 #2 JVZ Programmer Sep 3, 2002 205 CA 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://hostort:informixserver=server;user=xxxx;password=xxxxx" stmnt = con.createStatement (); Also for more information on this I found the following from google: http://www.lsi.upc.es/~fbd/manuals/InformixJDBC.pdf Hope this helps Upvote 0 Downvote
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://hostort:informixserver=server;user=xxxx;password=xxxxx" stmnt = con.createStatement (); Also for more information on this I found the following from google: http://www.lsi.upc.es/~fbd/manuals/InformixJDBC.pdf Hope this helps