Claudiu:

Maybe you can set a session variable:
session.putValue("myResultSet", theResultSet);
Then redirect to a jsp and access/use the variable theResultSet in the jsp by:
ResultSet rs = session.getValue("myResultSet");

Geeta

claudiu wrote:

> I have a servlet that implements a connection to a database  . The ResultSet
> that I get from the servlet , I need to use it into a javascript .
> How can I do that ??
>
> thanks in advance
>
> Claudiu Furcoi
> Arcadia SpA
> ---------------------------------------------------
> e-mail: [EMAIL PROTECTED]
>
> ___________________________________________________________________________
> To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
> of the message "signoff SERVLET-INTEREST".
>
> Archives: http://archives.java.sun.com/archives/servlet-interest.html
> Resources: http://java.sun.com/products/servlet/external-resources.html
> LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to