function NamedPlaceholderConverter::getConvertedSQL

Returns the converted SQL statement with positional placeholders.

Return value

string The converted SQL statement with positional placeholders.

File

core/modules/mysqli/src/Driver/Database/mysqli/NamedPlaceholderConverter.php, line 236

Class

NamedPlaceholderConverter
A class to convert a SQL statement with named placeholders to positional.

Namespace

Drupal\mysqli\Driver\Database\mysqli

Code

public function getConvertedSQL() : string {
  return implode('', $this->convertedSQL);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.