gpt4 book ai didi

java - 在树莓派上打开连接 SQLite 时出错

转载 作者:行者123 更新时间:2023-11-30 09:08:13 25 4
gpt4 key购买 nike

更新:我只是检查了我使用的最新 JDBC jar,它缺少映射/Linux/arm/libsqlitejdbc.so,这个问题可以通过从某个地方下载这个文件来解决吗?到处都找不到。

编辑:问题似乎是这个,但我不知道如何解决这个问题。

Caused by: java.lang.Exception: Error loading native library: /org/sqlite/native/Linux/arm/libsqlitejdbc.so

我正在尝试在我的树莓派上使用 SQLite 数据库。但是我无法让它工作。我在下面发布了输出。我正在使用 JDBC 驱动程序。该代码在我的主计算机上运行良好。我到处搜索但找不到解决方案。如果重要的话,我将我的代码打包到一个 Jar 文件中。

相关代码:

     private final String dbLocation = "jdbc:sqlite:" + System.getProperty("user.home") + "/ServerSQLite.db";

public SQLServer() throws ClassNotFoundException {
System.out.println("DB location: " + dbLocation);
Connection connection = null;
Class.forName("org.sqlite.JDBC");
try {

// create a database connection
connection = DriverManager.getConnection(dbLocation);

输出:

DB location: jdbc:sqlite:/usr/share/tomcat7/ServerSQLite.db
Error opening connection

编辑:硬编码位置同样存在读写权限问题:

jdbc:sqlite:/home/pi/ServerSQLite.db
Error opening connection

感谢我能得到的任何帮助:)

编辑 2:以为我打印了堆栈跟踪,但这里没有:

java.sql.SQLException: Error opening connection
...Lots of exception
Caused by: java.lang.Exception: Error loading native library: /org/sqlite/native/Linux/arm/libsqlitejdbc.so
at org.sqlite.SQLiteJDBCLoader.loadSQLiteNativeLibrary(SQLiteJDBCLoader.java:241)
...
at org.sqlite.SQLiteConnection.open(SQLiteConnection.java:175)
... 29 more
Error opening connection

问题似乎是由以下原因引起的:

java.lang.Exception: Error loading native library: /org/sqlite/native/Linux/arm/libsqlitejdbc.so

最佳答案

您需要下载 SQLite 库的 arm 版本。我只找到一个地方可以得到它:https://bitbucket.org/xerial/sqlite-jdbc/issue/79/compile-for-arm

关于java - 在树莓派上打开连接 SQLite 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23665796/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com