Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Can I package a database other than SQLite with a Flutter app?
+2
−0
Flutter supports packaging a SQLite instance with a Flutter app using the Sqflite plugin. I do not like the speed of SQLite or the fact that it does not enforce column datatypes and want to use something like PostgreSQL or MySQL with my desktop app. Is there a way to do this in Flutter that doesn't require having users install the database separately before installing the application?
1 comment thread