Hi,
I want my swing application connect to a remote database(MySQL) and return resultsets.
Now I am getting data directly from remote DB using
remote DbURL =jdbc:mysql://remote IP address:3306/dbname
DriverManager.getConnection(remotedbURL, remoteuserName, remotepassWord);
Is there any problem getting records like this?
What is the best way of doing this?
Is this through RMI?(any reference sites for
Tomcat RMI)or any other way?
Thanks in advance.
Bindu