sql >> データベース >  >> RDS >> PostgreSQL

JBossログPostgresドライバーはJDBCに準拠していません

    このJBossフォーラムエントリによるとなし:JDBC4準拠のドライバが「非JDBC準拠」としてロードされるのはなぜですか?

    そしてソースコード:

     /**
    * Report whether the driver is a genuine JDBC compliant driver. A
    * driver may only report "true" here if it passes the JDBC compliance
    * tests, otherwise it is required to return false. JDBC compliance
    * requires full support for the JDBC API and full support for SQL 92
    * Entry Level.
    *
    * <p>For PostgreSQL, this is not yet possible, as we are not SQL92
    * compliant (yet).
    */
    public boolean jdbcCompliant()
    {
        return false;
    }
    

    https://github.com/pgjdbc/pgjdbc /blob/REL9_3_1102/org/postgresql/Driver.java.in

    これは、TODOリストの一部です http://jdbc.postgresql.org/development/ todo.html#コンプライアンス




    1. SQLAlchemyとAlembicを使用して、データベースにテーブル列が存在するかどうかを確認します

    2. Oracle Cloud Infrastructureでのイベントの操作パート1:サービスの基本

    3. plsqlストアドプロシージャのカンマ区切りパラメータ

    4. MySQLで検索エンジンのレコードを保存するときに日時を処理する最良の方法は?