Seems A,B,D are correct.
The standard Python library has a module called sqlite3, providing an interface compliant with the DB-API 2.0 specification.
https://edube.org/learn/pcpp1-5/working-with-an-sqlite-database
It's also possible to use a special name, :memory:, which creates a database in RAM:
conn = sqlite3.connect(':memory:')
Other 2 ways to create database:
conn = sqlite3.connect('hello.db')
conn = sqlite3.connect('C:\sqlite\hello.db')
https://edube.org/learn/pcpp1-5/creating-a-database
The fetchall method returns an empty list when no rows are available.
https://edube.org/learn/pcpp1-5/reading-data-2
upvoted 3 times
...
Log in to ExamTopics
Sign in:
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
Moneybing
1 year, 2 months ago