From 2dd9798143fc16acf13ccd9c5cc3104ea4e5f5d6 Mon Sep 17 00:00:00 2001 From: Ray Johnson Date: Sun, 10 May 2020 01:04:53 -0500 Subject: [PATCH] Read Data Fr Databases: Methods Available to a Cursor (#38720) --- .../reading-data-from-databases.english.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/curriculum/challenges/english/08-data-analysis-with-python/data-analysis-with-python-course/reading-data-from-databases.english.md b/curriculum/challenges/english/08-data-analysis-with-python/data-analysis-with-python-course/reading-data-from-databases.english.md index bbcd25b8de..5ad34bbd61 100644 --- a/curriculum/challenges/english/08-data-analysis-with-python/data-analysis-with-python-course/reading-data-from-databases.english.md +++ b/curriculum/challenges/english/08-data-analysis-with-python/data-analysis-with-python-course/reading-data-from-databases.english.md @@ -14,13 +14,12 @@ videoId: MtgXS1MofRw ```yml question: - text: Question + text: What method does a Cursor instance have and what does it allow? answers: - - one - - two - - three + - The Cursor instance has a .Run() method which allows you to run SQL queries. + - The Cursor instance has a .Select() method which allows you to select records. + - The Cursor instance has a .Execute() method which will receive SQL parameters to run against the database. solution: 3 ``` -