偏好存储

shared_preferences类比iOS中的UserDefaults,使用方法比较简单。 地址戳这里
pub get之后会自动出现一个这样的文件generated_plugin_registrant.dart
image.png
数据存储:

  1. void _incrementCounter() {
  2. //创建对象,用于操作存储和读取。
  3. SharedPreferences.getInstance().then((SharedPreferences prefs) {
  4. setState(() {
  5. _counter++;
  6. });
  7. prefs.setInt('counter', _counter);
  8. });
  9. }

数据读取:

  1. SharedPreferences.getInstance().then((SharedPreferences prefs) {
  2. setState(() {
  3. _counter = prefs.getInt('counter') ?? 0;
  4. });
  5. });

sqlite

使用sqlite(链接)需要搭配着path(链接)一起使用,在使用的过程中踩了一个坑, 明明我安装了CocoaPods却一直提示我CocoaPods not installed

  1. Warning: CocoaPods not installed. Skipping pod install.
  2. CocoaPods is used to retrieve the iOS and macOS platform side's plugin code
  3. that responds to your plugin usage on the Dart side.
  4. Without CocoaPods, plugins will not work on iOS or macOS.
  5. For more info, see https://flutter.dev/platform-plugins To install
  6. see https://guides.cocoapods.org/using/getting-started.html#installation for instructions.

最后解决办法
1;打开终端
2; 输入open /Applications/Android\ Studio.app即可。感觉挺奇怪的一个错误
感谢大佬,问题解决链接

创建表

1.getDatabasesPath来到了Documents下的目录
2.join(value, 'test_db.db')使用的是一个path的pub库配合使用
3.openDatabase打开数据库,onCreate建表
// 建表 CREATE TABLE 表名(,,)

  1. late Database _db;
  2. @override
  3. void initState() {
  4. super.initState();
  5. _initDatabase().then((value) => _db = value);
  6. }
  7. Future<Database> _initDatabase() async {
  8. Database db = await getDatabasesPath()
  9. .then((value) => join(value, 'test_db.db'))
  10. .then((value) => openDatabase(value, version: 1,
  11. onCreate: (Database db, int version) async {
  12. // 建表
  13. await db.execute(
  14. 'CREATE TABLE LK_Text(id INTEGER PRIMARY KEY,name TEXT, age INT)');
  15. }));
  16. return db;
  17. }

Future<String> getDatabasesPath() => databaseFactory.getDatabasesPath();是一个Future所以需要async配合着await来使用。
执行之后发现已经创建成功了,大小8kb, 是一个空表。
image.png

数据插入

_db插入数据可以使用事务处理,
// 添加数据 INSERT INTO 表名 VALUES (值1,值2,…)

  1. _db.transaction((txn) async {
  2. txn
  3. .rawInsert('INSERT INTO LK_Text(name,age) VALUES("zhangsan",16)')
  4. .then((value) => print(value));
  5. txn
  6. .rawInsert('INSERT INTO LK_Text(name,age) VALUES("lisi",17)')
  7. .then((value) => print(value));
  8. });

数据查询

// 数据查询 SELECT 列名称 FROM 表名称 *通配符

  1. _db.rawQuery('SELECT * FROM LK_Text').then((value) => print(value));

image.png

数据修改

// 修改数据 UPDATE 表名称 SET 列名称 = 新值 WHERE 列名称 = 某值

  1. _db.rawUpdate('UPDATE LK_TEXT SET age = 18 WHERE age = 16');

image.png

删除表

1._db.delete删除表
2._db.close()关闭数据库

  1. _db
  2. .rawQuery('SELECT * FROM LK_Text')
  3. .then((value) => print(value))
  4. .then((value) {
  5. // 删除表
  6. _db.delete('LK_Text').then((value) => _db.close());
  7. });

切记:由于这里是异步的操作,注意执行的顺序!!
校验的话还是很简单,再次写入数据的时候会报错。
image.png

删除数据库

  1. // 删除数据库
  2. getDatabasesPath()
  3. .then((value) => join(value, 'test_db.db'))
  4. .then((value) => deleteDatabase(value));

整体来说还是比较简单的,主要是把sqlite语句写正确。