解决sqlite3:not found

简介:

原因:sqlite3为一个可执行程序,在system/xbin/下面,某些rom不带这个东西,导致没有该工具。

解决方法:拷贝一个sqlite3进去。

步骤:

1)让/system文件夹可读写

$adbshell#mount-oremount,rw-tyaffs2/dev/block/mtdblock3/system
2)打开另外一个有sqlite3(/system/xbin/sqlite3)的模拟器或者是手机,把sqlite3导出,并把它导入到没有sqlite3机器的/system/xbin下面。(可以使用DDMS完成这一操作)

$adbpushsqlite3/system/xbin
3)修改sqlite3的权限

#chmod4755/system/xbin/sqlite3
4)欢迎/system为只读文件

#mount-oremount,ro-tyaffs2/dev/block/mtdblock3/system
5)现在你就可以使用sqlite3命令了

#sqlite3/data/data/com.mobisync.android/databases/sync.dbSQLiteversion3.6.22Enter".help"forinstructionssqlite>.tables


本文转自gaofeng36599 51CTO博客,原文链接:http://blog.51cto.com/786678398/1308376

相关文章
|
4月前
|
SQL 网络协议 网络安全
【Python】已解决:pymssql._pymssql.OperationalError: (20009, b’DB-Lib error message 20009, severity 9:\nUn
【Python】已解决:pymssql._pymssql.OperationalError: (20009, b’DB-Lib error message 20009, severity 9:\nUn
190 0
|
数据库管理 Windows
【CodeSmith】The System.Data.SQLite library is not installed on this computer,不能使用SQLite解决办法
【CodeSmith】The System.Data.SQLite library is not installed on this computer,不能使用SQLite解决办法
38 0
|
SQL 关系型数据库 MySQL
Could not execute query ---> MySql.Data.MySqlClient.MySqlException: You have an error in your SQL sy
Could not execute query ---> MySql.Data.MySqlClient.MySqlException: You have an error in your SQL sy
42 0
|
SQL 安全 Java
6. 成功解决:Driver class 'com.microsoft.sqlserver.jdbc.SQLServerDriver' could not be found, make sure the 'MS SQL Server (Native)' driver (jar file) is installed.
在使用 Kettle(Spoon) 工具创建 SQL Server 数据库连接时,提示:Driver class 'com.microsoft.sqlserver.jdbc.SQLServerDriver' could not be found, make sure the 'MS SQL Server (Native)' driver (jar file) is installed. com.microsoft.sqlserver.jdbc.SQLServerDriver
1520 1
|
关系型数据库 MySQL
Error:Unable to find a match: mysql-community-server
Error:Unable to find a match: mysql-community-server
247 0
|
关系型数据库 MySQL PHP
解决Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in
php 5个版本,5.2、5.3、5.4、5.5,怕跟不上时代,新的服务器直接上5.5,但是程序出现如下错误:Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in,看意思就很明了,说mysql_connect这个模块将在未来弃用,请你使用mysqli或者PDO来替代。
2747 0
|
SQL 关系型数据库 MySQL
MySQL - [ERR] 1064 - You have an error in your SQL syntax check the manual……
MySQL - [ERR] 1064 - You have an error in your SQL syntax check the manual……
225 0