hello
im trying to connect oracle server in another Computer but i get Exception
here is my code :
public PersonDa()
{
try {
Class.forName("oracle.jdbc.driver.DriverManager");
connection = DriverManager.getConnection("oracle.jdbc:thin:192. 168.32.1:1521rcl", "SYSTEM", "123456");
} catch (Exception e)
{
e.printStackTrace();
}
}