~Tom
Index: JDBCStore-howto.html
===================================================================
RCS file: /home/cvspublic/jakarta-tomcat-4.0/catalina/docs/JDBCStore-howto.html,v
retrieving revision 1.1
diff -u -r1.1 JDBCStore-howto.html
--- JDBCStore-howto.html 27 Apr 2001 22:11:03 -0000 1.1
+++ JDBCStore-howto.html 25 Aug 2003 21:46:33 -0000
@@ -44,6 +44,7 @@
create table tomcat$sessions
(
id varchar(100) not null primary key,
+ app varchar(100) not null,
valid char(1) not null,
maxinactive int not null,
lastaccess bigint,
@@ -75,6 +76,7 @@
mysql> create table tomcat$sessions
-> (
-> id varchar(100) not null primary key,
+ -> app varchar(100) not null,
-> valid char(1) not null,
-> maxinactive int not null,
-> lastaccess bigint,
@@ -109,6 +111,7 @@
connectionURL="jdbc:mysql://localhost/tomcat?user=test&amp;password=test"<br>
sessionTable="tomcat$sessions"<br>
sessionIdCol="id"<br>
+ sessionAppCol="app"<br>
sessionDataCol="data"<br>
sessionValidCol="valid"<br>
sessionMaxInactiveCol="maxinactive"<br>
@@ -155,6 +158,11 @@
<tr>
<td height="32">sessionIdCol</td>
<td> The column in the session table that contains the session ID
+</td>
+</tr>
+<tr>
+<td height="32">sessionAppCol</td>
+<td> The column in the session table that identifies the webapp (built from
Engine, Host and Context).
</td>
</tr>
<tr>--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
