flutter sqlite(3)

其他方式查看数据库

一 、找位置

找到自己的数据库位置
在控制台输出位置

flutter: /Users/mac/Library/Developer/CoreSimulator/Devices/39362EFD-A582-46A1-93D6-0B0CF49DC7C9/data/Containers/Data/Application/FCB8A187-417B-4918-83B6-165C8F40DE19/Documents/User.db

二、 打开

用命令行或者其它工具打开

命令行:

sqlite3

(base) mac@macdeMacBook-Air / % sqlite3
SQLite version 3.38.2 2022-03-26 13:51:10
Enter ".help" for usage hints.
Connected to a transient in-memory database.
Use ".open FILENAME" to reopen on a persistent database.
sqlite> 
.open 数据库位置

更多操作.help

其它工具:

比如DataGrip

你可能感兴趣的:(sqlite,数据库,flutter)