sqflite_tvos
tvOS implementation of sqflite
for flutter-tvos
(port of sqflite_darwin).
Generated by
flutter-tvos plugin port(modular-SwiftPM podspec).
Usage
dependencies:
sqflite: ^2.x
sqflite_tvos: ^0.0.1
path_provider_tvos: ^0.0.1 # for a writable DB directory
tvOS support
✅ Supported
- Full SQLite:
openDatabase,execute,rawQuery,query,insert,update,delete, transactions, batches —sqlite3ships with tvOS.
⚠️ Limitations / differs from iOS
- Put the database under a
path_providerdirectory (Documents / Application Support). The tvOS sandbox is constrained and OS-managed caches can be purged — don't store the DB in a cache/temp dir if you need durability.
❌ Not supported on tvOS
- None for core SQLite usage.
See PORTING_REPORT.md for the port detail and checklist.