Home > Enterprise >  what is best local database for desktop app flutter (windows system)
what is best local database for desktop app flutter (windows system)

Time:07-29

what is the best local database for desktop app flutter (windows system) and what is best resource for learn it

CodePudding user response:

There are not many options for the windows apps, but we have these. You can use objectbox or hive for windows platform. Both the databases have their own documentation in the readme file you can look into it and learn it.

Hive does not support any kind of query, so choose your database carefully

CodePudding user response:

If you a database unique for one user in your application you can use this package sqflite.

But if you want a cache system you can use this package Flutter Secure Storage which is very useless to store one specific element.

  • Related