Advertisements
Advertisements
प्रश्न
Which method is used to connect a database? Give an example.
टिप्पणी लिखिए
उत्तर
- Connect()method is used to connect a database
- Connecting to a database means passing the name of the database to be accessed.
- If the database already exists the connection will open the same. Otherwise, Python will open a new database file with the specified name.
Example:
import sqlite3
# connecting to the database
connection = sqlite3.connect (“Academy.db”)
# cursor
cursor = connection. cursor()
shaalaa.com
Database
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
Tick the appropriate circle.
What is a database?
A table is known as ______
Mention a few examples of a database.
Which of the following is an organized collection of data?
Which of the following is a control structure used to traverse and fetch the records of the database?
Mention the users who use the Database.