We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37fba4f commit e06131cCopy full SHA for e06131c
src/cs50/_session_util.py
@@ -5,6 +5,7 @@
5
6
import sqlalchemy
7
8
+
9
def is_sqlite_url(url):
10
return url.startswith("sqlite:///")
11
src/cs50/_sql_util.py
@@ -2,6 +2,7 @@
2
3
import decimal
4
def fetch_select_result(result):
rows = [dict(row) for row in result.fetchall()]
for row in rows:
0 commit comments