I want an OS Authenticated user to be able to run a java program that uses the JDBC Thin driver to be able to login without specifying a password. Is this possible?
For example, I want to do something similar to:
Code:Connection conn = DriverManager.getConnection ("jdbc:oracle:thin:@myhost:1521:test","ops$jeffh","");
