cmlenz      2002/08/08 15:16:27

  Modified:    src/stores/org/apache/slide/store/impl/rdbms J2EEStore.java
  Log:
  - Fixed typo that resulted in a URI string where the ID was expected
  
  Revision  Changes    Path
  1.3       +2 -1      
jakarta-slide/src/stores/org/apache/slide/store/impl/rdbms/J2EEStore.java
  
  Index: J2EEStore.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/src/stores/org/apache/slide/store/impl/rdbms/J2EEStore.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- J2EEStore.java    8 Aug 2002 21:12:12 -0000       1.2
  +++ J2EEStore.java    8 Aug 2002 22:16:27 -0000       1.3
  @@ -668,7 +668,8 @@
               Connection conn = getCurrentConnection();
               Statement stmt = conn.createStatement();
               StringBuffer buf =
  -                new StringBuffer("DELETE FROM URI WHERE URI_ID = ").append(uri);
  +                new StringBuffer("DELETE FROM URI WHERE URI_ID = ")
  +                .append(uriId);
               stmt.execute(buf.toString());
               stmt.close();
               
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to