You appear to be a bot. Output may be restricted
Description
Use this method for non-SELECT queries.
Or anything where you dont necessarily expect a result string, e.g. DROPs, CREATEs, etc.
Usage
$bool = Adapter::execute_ddl( $ddl );
Parameters
- $ddl
- ( string ) required – The query to run.
Returns
bool
Source
File name: wordpress-seo/lib/migrations/adapter.php
Lines:
1 to 3 of 3
public function execute_ddl( $ddl ) { return $this->query( $ddl ); }