Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness. Use wpdb::query() instead.
wpdb::_do_query() WordPress Method
The wpdb::_do_query() method is used internally by the WordPress database class to execute a SQL query. This method should not be used directly.
wpdb::_do_query( string $query ) #
Internal function to perform the mysql_query() call.
Description
See also
Parameters
- $query
(string)(Required)The query to run.
Source
File: wp-includes/wp-db.php
private function _do_query( $query ) { if ( defined( 'SAVEQUERIES' ) && SAVEQUERIES ) { $this->timer_start(); } if ( ! empty( $this->dbh ) && $this->use_mysqli ) { $this->result = mysqli_query( $this->dbh, $query ); } elseif ( ! empty( $this->dbh ) ) { $this->result = mysql_query( $query, $this->dbh ); } $this->num_queries++; if ( defined( 'SAVEQUERIES' ) && SAVEQUERIES ) { $this->log_query( $query, $this->timer_stop(), $this->get_caller(), $this->time_start, array() ); } }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
3.9.0 | Introduced. |