Sqlite:在 Intellij 中执行 Spatialite 函数

Sqlite: Execute Spatialite Functions in Intellij

有谁知道是否可以在 intellij 中的 sqlite 数据库上执行 spatialite 函数? 空间函数参考:http://www.gaia-gis.it/gaia-sins/spatialite-sql-4.2.0.html

特别是,我对在 Point 类型上使用函数很感兴趣。

谢谢!

编辑:函数在官方 spatialite-gui 中工作,但我认为没有办法以编程方式使用 spatialite-gui,是吗?

这是我到目前为止尝试的方法:在 intellij 中,我连接了 Java JDBC 库并尝试使用函数 ST_X(point) 和 ST_Y(point)没有成功:

        Connection c = null;
        Class.forName("org.sqlite.JDBC");
        c = DriverManager.getConnection("jdbc:sqlite:" + path + databaseName);
        c.setAutoCommit(false);
        System.out.println("Opened database \"" + databaseName + "\" successfully");

        String sql = "SELECT id, ST_Y(point), ST_X(point) from tablename;";

        Statement stmt =  c.createStatement();
        ResultSet rs = stmt.executeQuery(sql);
        while ( rs.next() ) {
            String msg = "Id: ";
            msg += rs.getInt(1);
            msg += " , Latitude: ";
            msg += rs.getDouble(2);
            msg += " , Longitude: ";
            msg += rs.getDouble(3);
            System.out.println(msg);
        }
        rs.close();
        stmt.close();
        c.close();

这将引发以下异常:

Exception in thread "main" java.sql.SQLException: [SQLITE_ERROR] SQL error or missing database (no such function: ST_Y)
    at org.sqlite.core.DB.newSQLException(DB.java:890)
    at org.sqlite.core.DB.newSQLException(DB.java:901)
    at org.sqlite.core.DB.throwex(DB.java:868)
    at org.sqlite.core.NativeDB.prepare(Native Method)
    at org.sqlite.core.DB.prepare(DB.java:211)
    at org.sqlite.jdbc3.JDBC3Statement.executeQuery(JDBC3Statement.java:81)
    at com.company.Test.main(Test.java:77)

编辑 2: 我迷路了。看来我需要加载扩展才能使其工作。这不包含在 JDBC 连接器中吗? (我通过 Maven 拉出了 JDBC 连接器。) 我在哪里可以找到正确的扩展名? 是那些吗? https://www.gaia-gis.it/fossil/libspatialite/index 还是那些? http://www.gaia-gis.it/gaia-sins/index.html 我该如何使用它们?有人做过吗?

在执行空间查询之前,您需要加载 spatialite 模块来执行

SELECT load_extension('mod_spatialite');

您可以在此处找到文档:Dynamically loading SpatiaLite as an extension module

注意要加载的模块必须在系统路径(documentation)上,路径分隔符必须是/。还要考虑到 spatialite 模块和 Java 必须兼容(32 位或 64 位)。