我从iPhone的iTunes备份中提取了iOS 6 sms db。这是一个sqlite3 db。

当我在终端中查询它时,它工作正常:

$ sqlite3 sms.db
sqlite> select * from message;


但是,当我尝试使用xerial sqlite-jdbc查询它时,我得到了[SQLITE_NOTADB]。

这是我使用的代码:

public class Sample {
    public static void main(String[] args) throws ClassNotFoundException {
        String dbFilePath = args[0];
        File dbFile = new File(dbFilePath);
        if (!dbFile.exists()) {
            throw new IllegalArgumentException(String.format("%s does not exist", dbFilePath));
        }

        // load the sqlite-JDBC driver using the current class loader
        Class.forName("org.sqlite.JDBC");

        Connection connection = null;
        try {
            // create a database connection
            connection = DriverManager.getConnection(String.format("jdbc:sqlite:%s", dbFilePath));
            Statement statement = connection.createStatement();
            statement.setQueryTimeout(30);  // set timeout to 30 sec.

            ResultSet rs = statement.executeQuery("select * from message");
            while (rs.next()) {
                // read the result set
                System.out.println(rs.getString("text"));
            }
        } catch (SQLException e) {
            // if the error message is "out of memory",
            // it probably means no database file is found
            System.err.println(e.getMessage());
        } finally {
            try {
                if (connection != null)
                    connection.close();
            } catch (SQLException e) {
                // connection close failed.
                System.err.println(e);
            }
        }
    }
}


我在OSX Mountain Lion上使用xerial sqlite-jdbc 3.7.2。

最佳答案

xerial sqlite-jdbc的3.7.2版本是Maven中央存储库中的最新版本,似乎与OSX Mountain Lion不兼容。我必须使用发现here的版本3.7.15-SNAPSHOT。

如果您使用的是maven,则可以使用以下sh文件:

#!/bin/sh
wget https://bitbucket.org/xerial/sqlite-jdbc/downloads/sqlite-jdbc-3.7.15-SNAPSHOT.jar
mvn install:install-file -Dfile=sqlite-jdbc-3.7.15-SNAPSHOT.jar -DgroupId=org.xerial -DartifactId=sqlite-jdbc -Dversion=3.7.15-SNAPSHOT -Dpackaging=jar
rm -f sqlite-jdbc-3.7.15-SNAPSHOT.jar


我还在Ubuntu 12.04 LTS上尝试了xerial sqlite-jdbc 3.7.2,它运行良好。

关于java - xerial sqlite-jdbc 3.7.2在OSX Mountain Lion上返回[SQLITE_NOTADB],我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15310667/

10-09 03:32