You are here

public function Statement::GetBoundParameters in Drupal driver for SQL Server and SQL Azure 8.2

Get parameters bound to this statement, useful for debugging purposes.

Return value

string[]

File

drivers/lib/Drupal/Driver/Database/sqlsrv/PDO/Statement.php, line 103

Class

Statement
Turbocharged Statement class to work with MSSQL server.

Namespace

Drupal\Driver\Database\sqlsrv\PDO

Code

public function &GetBoundParameters() {
  return $this->boundParams;
}