hi remy.
Please announce me if you know that plans more specifically,
When will plans include into Slide?
> plans for extending that store and using a connection pool
(through the (XA)DataSource interface).
Do you discuss about the design of this module on the slide-dev mailing list ?
thanks,
-------------------------------------------------------
Kiyoko Takanabe
----- Original Message -----
From: "Remy Maucherat" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, August 29, 2001 9:54 PM
Subject: Re: Connection in JDBCContentStore?
>
> ----- Original Message -----
> From: "Kiyoko Takanabe" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Wednesday, August 29, 2001 1:39 AM
> Subject: Connection in JDBCContentStore?
>
>
> > I have a simple question about the Database connection.
> >
> > We are using a Slide 1.0.11 release and Tomcat v3.2.2
> > (with the standard Slide webapp), and tryied to use mysql v3.23+ via
> JDBC.
> > In this case, Slide will use slidestore.reference.JDBCContentStore,
> > there the JDBCContentStore class look like that has a single connection in
> sourcecode.
> >
> > :
> > /**
> > * Database connection.
> > */
> > protected Connection connection;
> > :
> > :
> > public synchronized void connect()
> > throws ServiceConnectionFailedException {
> > try {
> > connection = DriverManager.getConnection
> > ("jdbc:" + url, user, password);
> > :
> >
> > If multiple client connect to WebDAV, Does Slide have a single
> connection
> > in to the Server?
>
> With that store, yes.
>
> > process multiple transactions concurrently?
>
> Obviously, you can't do that with that store.
> The point was to have a store which would have minimal requirements and
> would be useable under light load environments.
>
> There are plans for extending that store and using a connection pool
> (through the (XA)DataSource interface).
>
> Remy
>
>