Updated on 2024-06-03 GMT+08:00

Loading the Driver

Load the database driver before creating a database connection.

You can load the driver in the following ways:
  • Implicit loading at any position before a connection is created in the code: Class.forName("com.huawei.gaussdb.jdbc.Driver");
  • Parameter transfer during JVM startup: java -Djdbc.drivers=com.huawei.gaussdb.jdbc.Driver jdbctest

    jdbctest is the name of a test application.