Loading the Driver

Load the database driver before creating a database connection.

You can load the driver in the following ways:

  • Before creating a connection, implicitly load the driver in the code: Class.forName(“org.postgresql.Driver”)

  • During the JVM startup, transfer the driver as a parameter to the JVM: java -Djdbc.drivers=org.postgresql.Driver jdbctest

    NOTE:
    jdbctest is the name of a test application.

Feedback
编组 3备份
    openGauss 2024-05-05 00:44:49
    cancel