I would get rid of default_catalog and schema and see if you can see your tables.
The other thing to do is to make sure you can even get to your database from your machine - write a simple JDBC program that uses the info you have...
Here is a quick/little program:
Code:
try
{
DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
}
catch (SQLException e)
{
System.err.println("Exception thrown:" + e.getMessage());
e.printStackTrace();
}
// Connect to the database.
// You can put a database name after the @ sign in the connection URL.
Connection conn =null;
try
{
conn = DriverManager.getConnection("jdbc:oracle:thin:@", "bibbie", "secret");
}
catch (SQLException e)
{
System.err.println("Exception thrown:" + e.getMessage());
e.printStackTrace();
}
String sSQL = "select first_name,last_name from person";
Statement stmt = null;
try
{
stmt = conn.createStatement();
ResultSet rs=(ResultSet)stmt.executeQuery(sSQL);
while(rs!=null&&rs.next())
{
System.out.println("rs.getString(1) = " + rs.getString(1)); //FIRST_NAME
System.out.println("rs.getString(2) = " + rs.getString(2)); // LAST_NAME
}
rs.close();
stmt.close();
conn.close();
} catch(SQLException e)
{
System.out.println("e.getMessage() = " + e.getMessage());
e.printStackTrace(System.out);
}
[/code]