我想从 shell 运行 sqlite3 但它给出错误 sqlite3: not found
C:\Users\karanbeer.kaur>adb shell
# sqlite3 mydata.db
sqlite3 mydata.db
sqlite3: not found
#
请帮忙。提前致谢!!!
请按照以下步骤操作。
在命令提示符中。
1) Go to your sdk-tool directory . (Example - E:\android-sdk-windows\tools or platform-tools>)
2) Type adb shell and press enter
3) # cd data
4) # cd data
5) # cd your package name
6) # cd databases
7) # sqlite3 your_database_name.db
它将打开一个 sqlite3 提示,您可以在其中手动创建表并将数据插入其中。
请查看这些步骤以使用以下命令提示符创建 sqlite3 数据库。
D:\android-sdk-windows\platform-tools>adb shell
1. # cd data
2. # cd data
3. # cd com.tablet.view //(this is your project package name)
4. # sqlite3 Manoj.db // database name .
/////- get result
sqlite3 Manoj.db
SQLite version 3.6.22
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
如果您有任何问题,请随时问我。祝你好运。。