Make WordPress Core

Opened 15 years ago

Closed 12 years ago

#20178 closed enhancement (duplicate)

wpdb class : provide a disconnect / connect to db functions

Reported by: arena Owned by: arena
Priority: normal Milestone:
Component: Database Version: 3.4
Severity: normal Keywords: close
Cc: Focuses:

Description

some hosts automatically disconnect mysql after a short while.
I think it could be interesting to have in wpdb a disconnect and connect functions.

Change History (6)

#1 @ocean90
15 years ago

  • Summary enhancement : wpdb class : provide a disconnect / connect to db functionswpdb class : provide a disconnect / connect to db functions

Related: #5932

#2 @arena
15 years ago

Hi ocean90

the code i am currently using

class data_base
{
	function mysql_disconnect()
	{
		global $wpdb;
		mysql_close($wpdb->dbh);
	}

	function mysql_connect()
	{
		global $wpdb;
		$wpdb->__construct(DB_USER, DB_PASSWORD, DB_NAME, DB_HOST);
	}
}

but still have some "mysql_real_escape_string(): nn is not a valid MySQL- Link resource" on some webhosts after disconnecting/connecting !

#3 @nacin
13 years ago

  • Component GeneralDatabase

#4 @pento
13 years ago

  • Keywords close added; dev-feedback removed

Unless there's another use case for this, I'm inclined to close this ticket. The reported bug (hosts automatically disconnecting MySQL) will be fixed by #5932.

#5 @arena
13 years ago

Not sure to close this ticket is a good option.
At least wordpress to privide an api in fixing #5932.
Some plugins may use it ...

#6 @pento
12 years ago

  • Milestone Awaiting Review
  • Resolutionduplicate
  • Status newclosed

Duplicate of #5932.

If the MySQL connection is lost mid-page load, it will reconnect as of [27279].

For more advanced connecting/disconnecting, this is the realm of a drop-in DB replacement.

Note: See TracTickets for help on using tickets.