You are not logged in.
Pages: 1
How you doing?
How can we make the ORM do a VACUUM command in the SQlite database?
Offline
You can run a VACUUM on the server side, e.g. in a service.
There is no ORM method for it, since it is a SQL specific action, not RESTful.
But note that since VACUUM in SQLite3 is buggy and flush all virtual tables, without re-creating them, this statement is a no-op if you have some virtual tables in your model.
See http://synopse.info/fossil/info/9f3faa8e44
If you want a true VACUUM, you will need to run it outside the main TSQLRestServerDB process, at the row database level (e.g. before its creation or after its release).
Offline
Wich command can I use before run a VACUUM, you know to disconnect the connections and sql statements from the database?
Offline
Pages: 1