From f0a5513e36db243dcdfddd84990dccfdf3674399 Mon Sep 17 00:00:00 2001 From: Vincent Amstoutz <46444652+vinceAmstoutz@users.noreply.github.com> Date: Sat, 17 Jun 2023 21:34:28 +0200 Subject: [PATCH] Fix typo in the expression Co-authored-by: Alexander M. Turek --- doctrine.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doctrine.rst b/doctrine.rst index 44590fa4717..74bbd073373 100644 --- a/doctrine.rst +++ b/doctrine.rst @@ -999,7 +999,7 @@ In addition, you can query directly with SQL if you need to:: ORDER BY p.price ASC '; - $resultSet = $stmt->executeQuery($sql, ['price' => $price]); + $resultSet = $conn->executeQuery($sql, ['price' => $price]); // returns an array of arrays (i.e. a raw data set) return $resultSet->fetchAllAssociative();