Search found 5 matches

by freemaker
04.06.2009, 10:59
Forum: 6.6 - stable
Topic: how to make use of "auto-vacuum" ?
Replies: 5
Views: 723

trupka: thank you very much! Could you tell me how to set "pragma autovacuum = 1|" of sqlite3 with Zeos ?
by freemaker
03.06.2009, 16:23
Forum: 6.6 - stable
Topic: how to make use of "auto-vacuum" ?
Replies: 5
Views: 723

sqlite3
by freemaker
03.06.2009, 15:42
Forum: 6.6 - stable
Topic: how to make use of "auto-vacuum" ?
Replies: 5
Views: 723

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!
by freemaker
30.05.2009, 23:59
Forum: 6.6 - stable
Topic: How to use SQLite with ZEOS in a transaction?
Replies: 4
Views: 1288

trupka: thank you very much! it takes about 1 second at most now, so amazed! :thanks:
by freemaker
30.05.2009, 05:17
Forum: 6.6 - stable
Topic: How to use SQLite with ZEOS in a transaction?
Replies: 4
Views: 1288

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; ...