sqflite_tvos
tvOS (Apple TV) implementation of the sqflite Flutter plugin, provided by flutter-tvos.
0.0.2
4.3K downloads/mo
#4071 most downloaded on pub.dev
fluttertv/plugins
What this package is like to depend on
Last release 1 months ago
20 Jul 2026
Too new to tell
only 2 dated releases
Nearly every release is documented
notes for 2 of 2 stable releases
Nothing withdrawn
no release was ever pulled
3 months old
2 releases · first in 2026
2 releases in the last 12 months
see the full history below
Release timeline
2 releases · May 2026 to Jul 2026Releases
latest 2-
0.0.220 Jul 2026Release notes
Open source →- Fix:
getDatabasesPath()now resolves underLibrary/Cachesinstead of Documents. On a physical Apple TV the tvOS sandbox does not permit writes to Documents, so the canonicalopenDatabase(join(await getDatabasesPath(), 'x.db'))failed withSQLITE_CANTOPEN. The simulator sandbox permits the write, which masked this. - Behaviour change: apps that created a database against the simulator under the old Documents path will resolve to a new, empty database. tvOS storage is purgeable by platform contract — data that must survive belongs on a server or in iCloud Key-Value Storage.
- Fix:
-
0.0.124 May 2026Release notes
Open source →Initial release — tvOS implementation of
sqflitefor flutter-tvos. Generated byflutter-tvos plugin port(modular-SwiftPM podspec) fromsqflite_darwin.- Supported: full SQLite —
openDatabase,execute,rawQuery,query,insert,update,delete, transactions, batches (sqlite3ships with tvOS). - Differs from iOS: the tvOS sandbox is constrained and
OS-managed caches can be purged — put the database under a
path_providerdirectory (Documents / Application Support), not in a cache / temp dir, if you need durability. - Not supported on tvOS: none for core SQLite usage.
14/14 integration tests pass. See
README.mdandPORTING_REPORT.mdfor detail. - Supported: full SQLite —