As part of development of a Python module you want to store some user information details into a table for running SQL query. But you don't have the privilege to install a new database. You have to use the features available with default Python installation.
As part of development of a Python module you want to store some user information details into a table for running SQL query. But you don’t have the privilege to install a new database. You have to use the features available with default Python installation.
a. Use Dictionary and write a python program interface to interpret SQL query
b. SQLite is a default Database. This can be directly used
c. MySQL is available as default built-in Database. This can be directly used.
d. Use File and write a Python Program interface to interpret SQL query.