wpdb
Methods
1 to 21 of 21
- wpdb::_escape_identifier_value() – Escapes an identifier value without adding the surrounding quotes.
- wpdb::_insert_replace_helper() – Helper function for insert and replace.
- wpdb::_real_escape() – Real escape, using mysqli_real_escape_string() or mysql_real_escape_string().
- wpdb::_weak_escape() – Do not use, deprecated.
- wpdb::check_connection() – Checks that the connection to the database is still up. If not, try to reconnect.
- wpdb::check_database_version() – Determines whether MySQL database is at least the required minimum version.
- wpdb::check_safe_collation() – Checks if the query is accessing a collation considered safe on the current version of MySQL.
- wpdb::db_connect() – Connects to and selects database.
- wpdb::escape_identifier() – Escapes an identifier for a MySQL database, e.g. table/field names.
- wpdb::get_col() – Retrieves one column from the database.
- wpdb::get_results() – Retrieves an entire SQL result set from the database (i.e., many rows).
- wpdb::get_row() – Retrieves one row from the database.
- wpdb::get_table_charset() – Retrieves the character set for the given table.
- wpdb::get_var() – Retrieves one variable from the database.
- wpdb::has_cap() – Determines whether the database or WPDB supports a particular feature.
- wpdb::log_query() – Logs query data.
- wpdb::parse_db_host() – Parses the DB_HOST setting to interpret it for mysqli_real_connect().
- wpdb::print_error() – Prints SQL/DB error.
- wpdb::process_fields() – Processes arrays of field/value pairs and field formats.
- wpdb::query() – Performs a database query, using current database connection.
- wpdb::strip_invalid_text() – Strips any invalid characters based on value/charset pairs.