2

iPhone の iTunes バックアップから iOS 6 SMS データベースを抽出しました。sqlite3 データベースです。

ターミナルでクエリを実行すると、正常に動作します。

$ 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 を使用しています。

4

2 に答える 2

3

xerial sqlite-jdbc のバージョン 3.7.2 (Maven の中央リポジトリで見つかった最新のもの) は、OSX Mountain Lion と互換性がないようです。ここで見つけたバージョン 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 を試してみましたが、問題なく動作していました。

于 2013-03-09T12:36:34.190 に答える
0

OSX Maverick でも同じ問題があります。Maven の中央リポジトリでも利用できる 3.7.15-M1 に切り替えると、問題が解決しました。

于 2014-02-17T23:21:18.157 に答える