Closing a Connection

After you complete required data operations in the database, close the database connection.

Call the close method to close the connection. For example:

Connection conn = DriverManager.getConnection("url","user","password") ; 
conn.close();
Feedback
编组 3备份
    openGauss 2024-05-07 00:46:52
    cancel