Which local database to use?

I use TinyDB as a local database, but due to the number of records, operations are very slow.
Is there a better performing local database option?
Any indications? Alguma extensão estável?
Thanks!

Use SQLite. There is a very good SQLite extension from @TIMAI2 . Just search here in this forum and you will find it and a lot of examples.

I will try. thanks for the tip.

1 Like

Yes, as @Kleyber_Derick mentioned, use Sqlite...
My Sqlite extension follows the KISS principle (keep it simple, stupid)

See the Q&A section for a speed comparison between TinyDB and Sqlite

Taifun

1 Like

ok thanks!