Hello, how can I create JDBC:ODBC connection without requiring a DSN being configured on every client system?
This is what I do now. "Support" is my local system's ODBC DSN name.
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"
Connection oConnection = DriverManager.getConnection("jdbcdbc:Support"
My target environment is an Applet where the DSN would not be configured. Maybe I am missing something being new to Java???
Thanks!
Michael
This is what I do now. "Support" is my local system's ODBC DSN name.
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"
Connection oConnection = DriverManager.getConnection("jdbcdbc:Support"
My target environment is an Applet where the DSN would not be configured. Maybe I am missing something being new to Java???
Thanks!
Michael