ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/oup/current/Helper/LevelDB.pas
(Generate patch)

Comparing oup/current/Helper/LevelDB.pas (file contents):
Revision 138 by alloc, Fri Mar 30 00:49:02 2007 UTC vs.
Revision 140 by alloc, Fri Mar 30 01:06:52 2007 UTC

# Line 585 | Line 585 | begin
585    Query.ExecSQL;
586    Query.SQL.Text :=
587      'CREATE TABLE linkmap  ( id AUTOINC PRIMARY KEY, src_id INTEGER, ' +
588 <    'src_link_offset INTEGER, target_id INTEGER,  INDEX idsrcid src_id, ' +
589 <    'INDEX iddestid target_id);';
588 >    'src_link_offset INTEGER, target_id INTEGER,  INDEX idsrcid x src_id, ' +
589 >    'INDEX iddestid x target_id);';
590    Query.ExecSQL;
591    Query.SQL.Text :=
592      'CREATE TABLE rawmap  ( id AUTOINC PRIMARY KEY, src_id INTEGER, ' +
593      'src_link_offset INTEGER, sep BOOLEAN, size INTEGER, ' +
594      'data BLOB BlobCompressionMode 9 BlobBlockSize 1024 BlobCompressionAlgorithm ZLib, ' +
595 <    'INDEX idsrcid src_id);';
595 >    'INDEX idsrcid x src_id);';
596    //    Query.SQL.Text:='CREATE TABLE rawmap  ( id AUTOINC PRIMARY KEY, src_id INTEGER, src_link_offset INTEGER, size INTEGER, data BLOB BlobCompressionAlgorithm None );';
597    Query.ExecSQL;
598    Query.SQL.Text :=

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)