- Timestamp:
- 04/22/02 14:57:50 (10 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/release-0_71-bugfixes/Rapla/src/org/rapla/storage/dbsql/LinkStorage.java
r283 r339 78 78 79 79 void delete(Integer leftId) throws SQLException { 80 int id = leftId.intValue(); 81 if (config.getLog().enabled(6)) { 82 config.getLog().log(6,"Executing delete-sql " + delete 83 + " {" + id + "}"); 84 } 80 85 PreparedStatement stmt = null; 81 86 try { 82 87 stmt = con.prepareStatement(delete); 83 stmt.setInt(1, leftId.intValue());88 stmt.setInt(1,id); 84 89 stmt.executeUpdate(); 85 90 } finally { … … 90 95 91 96 public void deleteAll() throws SQLException { 97 config.getLog().log(3,"Executing DeleteAll SQL: " + deleteAll); 92 98 EntityStorage.executeBatchedStatement(con,deleteAll); 93 99 }
![(please configure the [header_logo] section in trac.ini)](/chrome/site/rapla.jpg)