You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by bl...@apache.org on 2002/05/02 18:02:40 UTC

cvs commit: jakarta-avalon-excalibur/event README.txt

bloritsch    02/05/02 09:02:40

  Modified:    datasource/src/java/org/apache/avalon/excalibur/datasource
                        JdbcDataSource.java
               event    README.txt
  Log:
  update javadocs for JdbcDataSource
  
  Revision  Changes    Path
  1.19      +7 -1      jakarta-avalon-excalibur/datasource/src/java/org/apache/avalon/excalibur/datasource/JdbcDataSource.java
  
  Index: JdbcDataSource.java
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/datasource/src/java/org/apache/avalon/excalibur/datasource/JdbcDataSource.java,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- JdbcDataSource.java	16 Mar 2002 00:05:40 -0000	1.18
  +++ JdbcDataSource.java	2 May 2002 16:02:40 -0000	1.19
  @@ -28,6 +28,7 @@
    *     &lt;pool-controller min="<i>5</i>" max="<i>10</i>" connection-class="<i>my.overrided.ConnectionClass</i>"&gt;
    *       &lt;keep-alive disable="false"&gt;select 1&lt;/keep-alive&gt;
    *     &lt;/pool-controller&gt;
  + *     &lt;auto-commit&gt;<i>true</i>&lt;/auto-commit&gt;
    *     &lt;driver&gt;<i>com.database.jdbc.JdbcDriver</i>&lt;/driver&gt;
    *     &lt;dburl&gt;<i>jdbc:driver://host/mydb</i>&lt;/dburl&gt;
    *     &lt;user&gt;<i>username</i>&lt;/user&gt;
  @@ -57,6 +58,11 @@
    *  to make sure that it is still alive.  Setting the <code>disable</code> attribute to true will
    *  disable this feature.  (Defaults to a query of "SELECT 1" and being enabled)</li>
    *
  + * <li>The <code>auto-commit</code> element is used to override the default (<code>true</code>)
  + *  value of the auto-commit policy.  It ensures that the database connection that is returned
  + *  to you is already in the proper mode.  If you use transactions in your queries, you must
  + *  set this to false.</li>
  + *
    * <li>The <code>driver</code> element is used to specify the driver to use when connecting to the
    *  database.  The specified class must be in the classpath.  (Required)</li>
    *
  @@ -68,7 +74,7 @@
    * </ul>
    *
    * @author <a href="mailto:bloritsch@apache.org">Berin Loritsch</a>
  - * @version CVS $Revision: 1.18 $ $Date: 2002/03/16 00:05:40 $
  + * @version CVS $Revision: 1.19 $ $Date: 2002/05/02 16:02:40 $
    * @since 4.0
    */
   public class JdbcDataSource
  
  
  
  1.3       +7 -2      jakarta-avalon-excalibur/event/README.txt
  
  Index: README.txt
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/event/README.txt,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- README.txt	30 Mar 2002 22:00:50 -0000	1.2
  +++ README.txt	2 May 2002 16:02:40 -0000	1.3
  @@ -1,8 +1,13 @@
                     Avalons Excalibur Event
                     -----------------------
   
  -This is the Excalibur Event package which Berin needs to 
  -document.
  +This is the Excalibur Event package which includes event queues,
  +asynchronous command processing, and the interfaces to support
  +event based programming.  Fortress uses this project to manage
  +the components and its pools outside of the direct thread of
  +execution.  It has been tested, and only a couple of clean up
  +things need to be done to make this an officially released
  +package.
   
   Getting Started:
   ----------------
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>