Accessing a specific schema with JDBC
My database has several schemas and I'm trying to access a specific schema using the following code snipet:
Class driverClass = Class("oracle.jdbc.driver.OracleDriver");
Connection jdbcConnection = Drivermanager.getConnection("jdbc:oracle:thin:@datastore:1527:dbname","username","password");
IDatabaseConnection connection = new DatabaseConnection(jdbcConnection);
Is there a way to access schema mike27 on dbname? I keep getting the schema pointed to by the public synonyms.