4

我正在利用 Java 和SQLiteJDBC来处理 SQLite。我需要访问给定表的列名,我发现我可以使用以下命令完成此操作:

pragma table_info(myTable)

但是,当尝试执行以下操作时出现错误。

PreparedStatement _pstmt =
    this._DBConnection.prepareStatement("pragma table_info( '?' );",
         new String[] {_tableName} );

java.sql.SQLException:NYI

我不知道 NYI 是什么意思,此外,我不确定我是否可以做我想做的事情。关于如何完成获取列名的任何建议?

4

2 回答 2

3

NYI 的意思是“尚未实施”。

我猜想命令“pragma table_info”可能不能作为准备好的语句直接执行。

在 SQLite JDBC 驱动程序、类org.sqlite.Metadata以及诸如getColumns()和等方法的代码中有一个执行该 pragma 语句的示例getPrimaryKeys()

我无法摘录代码并在此处发布,因为这样做与 StackOverflow 使用的知识共享许可不兼容。所以请去那个链接看看。

于 2009-08-28T02:14:28.430 回答
2

SQLiteJDBC 源代码中有这段代码摘录:

 public PreparedStatement prepareStatement(String sql, int autoC)
        throws SQLException { throw new SQLException("NYI"); }
    public PreparedStatement prepareStatement(String sql, int[] colInds)
        throws SQLException { throw new SQLException("NYI"); }
    public PreparedStatement prepareStatement(String sql, String[] colNames)
        throws SQLException { throw new SQLException("NYI"); }
    public PreparedStatement prepareStatement(String sql, int rst, int rsc) 
                                throws SQLException {
        return prepareStatement(sql, rst, rsc,
                                ResultSet.CLOSE_CURSORS_AT_COMMIT);
    }

我猜 NYI 的意思是“尚未实施”。

如果 pragma 的事情没有解决,

sqlite> CREATE TABLE a(col1, col2, col3);
sqlite> CREATE TABLE b(w, x, y, z);
sqlite> SELECT * FROM sqlite_master;
table|a|a|2|CREATE TABLE a(col1, col2, col3)
table|b|b|3|CREATE TABLE b(w, x, y, z)

sqlite> SELECT sql FROM sqlite_master;
CREATE TABLE a(col1, col2, col3)
CREATE TABLE b(w, x, y, z)

您可以从表中获取实际的列定义sqlite_master并自己解析它们。

于 2009-08-28T02:20:19.230 回答