coliver     2003/03/05 21:12:15

  Modified:    src/idl/cocoon_flow cocoon_flow.idl
  Log:
  fixed errors
  
  Revision  Changes    Path
  1.4       +5 -3      xml-cocoon2/src/idl/cocoon_flow/cocoon_flow.idl
  
  Index: cocoon_flow.idl
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/src/idl/cocoon_flow/cocoon_flow.idl,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- cocoon_flow.idl   6 Mar 2003 04:58:25 -0000       1.3
  +++ cocoon_flow.idl   6 Mar 2003 05:12:14 -0000       1.4
  @@ -272,7 +272,7 @@
            */
           void callAction(in string type, in string source, in Object parameters);
           /**
  -         * Obtain value form InputModule
  +         * Obtain value from InputModule
         * @param type (not sure)
         * @param attribute_ (not sure)
            */
  @@ -418,14 +418,16 @@
            * @param sql SQL statement to execute
            * @return the number of rows affected
            */
  -        long update(in string sql, in long startRow, in long maxRows);
  +        long update(in string sql);
   
           /**
            * Executes a SQL SELECT statement. You can limit the result with startRow 
and maxRows (which are optional). 
            * @param sql SQL statement to execute
  +      * @param startRow first row to be returned in result
  +      * @param maxRows maximum number of rows to return in result
            * @return Result: contains the same properties as in JSTL.
            */ 
  -        Result query(in string sql);
  +        Result query(in string sql, in long startRow, in long maxRows);
   
       };
   
  
  
  

Reply via email to