diff --git a/core/lib/Drupal/Core/Database/Driver/sqlite/Statement.php b/core/lib/Drupal/Core/Database/Driver/sqlite/Statement.php index 5610d071ce3050c6164e45b04db5eda710858589..d9b422b58435ba139b5171c530600923dc83fd0e 100644 --- a/core/lib/Drupal/Core/Database/Driver/sqlite/Statement.php +++ b/core/lib/Drupal/Core/Database/Driver/sqlite/Statement.php @@ -27,7 +27,7 @@ class Statement extends StatementPrefetch implements StatementInterface { * See http://bugs.php.net/bug.php?id=45259 for more details. */ protected function getStatement($query, &$args = []) { - if (count($args)) { + if (is_array($args) && !empty($args)) { // Check if $args is a simple numeric array. if (range(0, count($args) - 1) === array_keys($args)) { // In that case, we have unnamed placeholders. diff --git a/core/lib/Drupal/Core/Database/StatementInterface.php b/core/lib/Drupal/Core/Database/StatementInterface.php index a97043af6243db6c56d710d9c671aba894f5ecb2..4f4248df042904dba6789d9f1649b3979eaf8bec 100644 --- a/core/lib/Drupal/Core/Database/StatementInterface.php +++ b/core/lib/Drupal/Core/Database/StatementInterface.php @@ -44,7 +44,7 @@ interface StatementInterface extends \Traversable { * * @param $args * An array of values with as many elements as there are bound parameters in - * the SQL statement being executed. + * the SQL statement being executed. This can be NULL. * @param $options * An array of options for this query. * diff --git a/core/lib/Drupal/Core/Database/StatementPrefetch.php b/core/lib/Drupal/Core/Database/StatementPrefetch.php index 4e940ea372ed393ad18223c006ab69bed2d77685..de60d73bf9015a3e8eafea2b8013ccf87affae83 100644 --- a/core/lib/Drupal/Core/Database/StatementPrefetch.php +++ b/core/lib/Drupal/Core/Database/StatementPrefetch.php @@ -214,8 +214,8 @@ protected function throwPDOException() { * * @param $query * The query. - * @param array $args - * An array of arguments. + * @param array|null $args + * An array of arguments. This can be NULL. * @return \PDOStatement * A PDOStatement object. */