----- 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