How to close wpdb connection? [duplicate]

Is there any method to close connection similar to mysql_close() for wpdb in WordPress?
Is it not necessary to close connection for global wpdb?

1 Answer
1

WP 4.5 had introduced wpdb->close() method to close connection in current instance.


Old answer

There is no explicit method. It stores link identifier in $wpdb->dbh field, but it is protected, so not convenient to run close on.

Leave a Comment