PCPP-32-101 · Question #42
Select the true statements about the sqlite3 module. (Choose two.)
The correct answer is A. The sqlite3 module in python provides an interface compliant to the DB-API 2.0. Thus, it B. The special name 'memory' is used to create a database in RAM using the sqlite3 module. follows a standard performance metric that allows for consistency in database programming with Thus, when you use it as the name of the database file while opening a connection, it creates a temporary database that exists only in memory.
Question
Select the true statements about the sqlite3 module. (Choose two.)
Options
- AThe sqlite3 module in python provides an interface compliant to the DB-API 2.0. Thus, it
- BThe special name 'memory' is used to create a database in RAM using the sqlite3 module.
- CThe sqlite3 module does not support transactions.
- DThe fetchall method returns an empty list when no rows are available.
How the community answered
(54 responses)- A94% (51)
- C2% (1)
- D4% (2)
Explanation
follows a standard performance metric that allows for consistency in database programming with Thus, when you use it as the name of the database file while opening a connection, it creates a temporary database that exists only in memory.
Topics
Community Discussion
No community discussion yet for this question.