Changeset 197
- Timestamp:
- 10/27/09 10:43:54 (4 weeks ago)
- Files:
-
- 1 modified
-
trunk/cpp_analysis/src/xtc/lang/c4/DBHandler.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/cpp_analysis/src/xtc/lang/c4/DBHandler.java
r196 r197 123 123 try{ 124 124 stmt = conn.createStatement(); 125 //We set the pragma synchronous OFF 126 //The Database may be corrupted if the computer loses power or if the system crashes 127 //We don't really care 128 stmt.execute("PRAGMA synchronous = OFF;"); 129 125 130 //Table to avoid recounting the same header twice when analyzing 126 131 stmt.executeUpdate("create table if not exists treesMD5 (id INTEGER PRIMARY KEY ASC, hash BINARY[16], node TEXT); ");
