rmi, servlet and jdbc connection
hello to all...
if i have a method view details in my interface and in the implementation of the interface has a connection to a mysql database & is like:
...
public String viewDetails(int id) throws RemoteException
{
try
{
rs = st.executeQuery("Select * from Employees where id="+id);
return(rs.getString(1));
...
...
in my servlet, how do i display the "rs.getString(1)" ?
thx for the precious help!

