your first answer was nonresponsive.
You'll need to reread his post to better answer his question.
The oracle database is already properly configured and responding to JDBC requests just fine (his little test JDBC program is running quite happily, as is the program at the end of this message).
But when I put the exact same information into the CocoAdmin "Open New DB Connection" dialog, I get "Login Failed". Interestingly, if I select a JDBC driver that isn't in the CLASSPATH, and click the "Login >" button, I get the same error message.
I'm wondering if it could be a license issue with a really poor error message selection. I don't know how old my evaluation license is, but it could be over 30 days...
package persist;
import java.sql.Connection;
import java.sql.DriverManager;
public class JDBCCheck {
public static void main(String[] args) throws Exception {
Class.forName("oracle.jdbc.driver.OracleDriver");
Connection con = DriverManager.getConnection
("jdbc:oracle:thin:@tom:1521:CNDS", "USER", "PASSWORD");
return;
} // void main(String[])
} // class JDBCCheck
|