Re: [sqlite] LiteCLI

2019-01-10 Thread BohwaZ
On Tue, 8 Jan 2019 05:51:36 -0800 / Amjith Ramanujam said : > You can explicitly request an in memory database at the time of > launch like this: > > litecli :memory: A temporary database is not an in memory database, it can be partially flushed to disk when it grows too much :)

Re: [sqlite] LiteCLI

2019-01-08 Thread BohwaZ
Looks great! I was expecting it to behave like the default sqlite CLI tool though, that is if you fire it with no arguments it would automatically start a temporary database (see https://www.sqlite.org/inmemorydb.html ), but it doesn't seem like it's possible? Cheers.

Re: [sqlite] New SQLite Forum established - this mailing list is deprecated

2020-03-12 Thread BohwaZ
Kia ora, Like with the Fossil list I did subscribe and switch to the forum, but wouldn't it be possible to add the ability in Fossil to handle incoming email replies to forum posts? So that people wishing to use emails could still do it by subscribing to alerts and then replying to

Re: [sqlite] Backing up a SQLite database without the CLI

2019-04-04 Thread Bohwaz/Fossil
If you're trying to copy a file while connections still have it open then you should use SQLite API calls to do it. The obvious ones are in the SQLite Online Backup API, which is the set of calls underlying the '.backup' command you mentioned. You can find documentation for this here: