Flutter 에서 database 를 활용하는 방법
https://flutter-ko.dev/docs/cookbook/persistence/sqlite
SQLite에 데이터 저장하기
로컬 디바이스에 많은 데이터를 저장하고 쿼리를 요청해야 한다면, 로컬 파일이나 키-값 저장소 대신 데이터베이스를사용해보세요. 일반적으로 데이터베이스는 다른 로컬 솔루션보다 더 빠른
flutter-ko.dev
<sqlite>
dependencies:
flutter:
sdk: flutter
sqflite: ^1.1.0
path_provider: 1.6.5
https://levelup.gitconnected.com/room-database-equivalent-for-flutter-807c9729b58d
Room Database Equivalent for Flutter
Floor provides a neat SQLite abstraction for your Flutter applications inspired by the Room persistence library. It comes with automatic…
levelup.gitconnected.com
<Floor like Room>
dependencies:
flutter:
sdk: flutter
floor: ^0.14.0
dev_dependencies:
floor_generator: ^0.14.0
build_runner: ^1.7.3
Room Database Equivalent for Flutter
Floor provides a neat SQLite abstraction for your Flutter applications inspired by the Room persistence library. It comes with automatic…
levelup.gitconnected.com
'Flutter' 카테고리의 다른 글
Flutter - 주요 단축기/배너제거/플랫폼구분 (0) | 2022.02.06 |
---|---|
Flutter - File IO / Delay / 가로모드 (0) | 2022.02.06 |
Flutter - ToJson (0) | 2022.02.06 |
Flutter App Bar/화면크기조절/화면전환 (0) | 2022.02.06 |
Flutter 앱 구조/Widget/Singleton (0) | 2022.02.06 |