Hello friends, I am looking for some good source code which uses RMI/JDBC simultaneously so that I can develop my own project in RMI using JDBC.I have tried out programs using RMI only but have no experience in using RMI and JDBC simultaneously. Can you direct me to a sight which explains this 3-tier application in depth. Thanks in advance. A JavaRanch folk, Kavita.
Jerry Pulley
Ranch Hand
Joined: Sep 19, 2000
Posts: 221
posted
0
Kavita, I don't really see any interaction between the RMI and JDBC API's. You could build a data layer class that uses JDBC to converse with the DBMS, and then make that class remoteable (by implementing the interface and providing the exceptions). Making a class remote is pretty much independent of what the class actually does. jply