balld       00/06/22 12:49:20

  Modified:    src/org/apache/cocoon/processor/xsp/library/sql
                        XSPSQLLibrary.java
  Log:
  update-rows-attribute is no longer mandatory for updates
  
  Revision  Changes    Path
  1.8       +2 -2      
xml-cocoon/src/org/apache/cocoon/processor/xsp/library/sql/XSPSQLLibrary.java
  
  Index: XSPSQLLibrary.java
  ===================================================================
  RCS file: 
/home/cvs/xml-cocoon/src/org/apache/cocoon/processor/xsp/library/sql/XSPSQLLibrary.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- XSPSQLLibrary.java        2000/05/16 20:01:06     1.7
  +++ XSPSQLLibrary.java        2000/06/22 19:49:18     1.8
  @@ -60,7 +60,7 @@
    * A processor that performs SQL database queries.
    *
    * @author <a href="mailto:[EMAIL PROTECTED]">Donald Ball</a>
  - * @version $Revision: 1.7 $ $Date: 2000/05/16 20:01:06 $
  + * @version $Revision: 1.8 $ $Date: 2000/06/22 19:49:18 $
    */
   
   public class XSPSQLLibrary {
  @@ -143,7 +143,7 @@
           if (!st.execute(query)) {
                /** this returns the number of rows we updated, or -1 on error 
**/
               int update_rows = st.getUpdateCount();
  -            if (results_element != null) {
  +            if (results_element != null && 
!"".equals(update_rows_attribute)) {
                   
results_element.setAttribute(update_rows_attribute,""+update_rows);
               }
           } else {
  
  
  

Reply via email to