Search found 5 matches
- 04.06.2009, 10:59
- Forum: 6.6 - stable
- Topic: how to make use of "auto-vacuum" ?
- Replies: 5
- Views: 739
- 03.06.2009, 16:23
- Forum: 6.6 - stable
- Topic: how to make use of "auto-vacuum" ?
- Replies: 5
- Views: 739
- 03.06.2009, 15:42
- Forum: 6.6 - stable
- Topic: how to make use of "auto-vacuum" ?
- Replies: 5
- Views: 739
how to make use of "auto-vacuum" ?
Hi, friend!
I added 1k records in the test table, and then I delete the records. I found the file size of db did not decrease.
Could you tell me how to make the "auto-vacuum" work ? Thanks!
- 30.05.2009, 23:59
- Forum: 6.6 - stable
- Topic: How to use SQLite with ZEOS in a transaction?
- Replies: 4
- Views: 1306
- 30.05.2009, 05:17
- Forum: 6.6 - stable
- Topic: How to use SQLite with ZEOS in a transaction?
- Replies: 4
- Views: 1306
How to use SQLite with ZEOS in a transaction?
Hi, friend! My function is to insert about 400 sentences, and it takes about 20 seconds in the execution. Could you tell me the problems ? function ExecSQL: Boolean; var ZQuery: TZQuery; begin Result := True; ZQuery := TZQuery.Create(nil); try try ZConn.StartTransaction; ZQuery.Connection := ZConn; ...