hi!
This won't work for sure: java.sql.Connection is an interface, so a class
can't extend it :)
A concrete implementation of Connection comes with your jdbc-driver (just
like HttpSession is an interface which is implemented by the author of your
servlet-container).
Anyway: Where would you save the serializable Connection object so that
another applet can use it? Can't you connect your applet to a servlet that
passes serialized objects back to it after request or let your servlet talk
XML with your applet. This way your servlet can keep a ConnectionPool to
recycle Connection objects/create fewer connection objects, and your servlet
can cache the data so that your database only needs to be accessed if the
data changed.
-mw
----- Original Message -----
From: "Dmitrij Trunikov" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, May 14, 2002 12:23 PM
Subject: Re: persistent objects : a bit off topic
> Kumar Sameer wrote:
>
> > I want to save the Connection object so that another applet can use it.
I
>
> ....................
>
> > And if yes.... well can u advise me of any other
> > method to achieve my objective.
>
> For connection serialization try somwthing like this:
>
> public class SerConnection extends Connection implements Serializable {
> }
>
> But I doubt that deserialized connection will be valid.
> Instead you can serealize parameters (url,login,passwd etc.) for reopen
> connection in other applet.
>
>
___________________________________________________________________________
> 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