Computer Science
The set of records retrieved after executing an SQL query over an established database connection is called …………… .
- table
- sqlresult
- result
- resultset
Related Questions
In order to open a connection with MySQL database from within Python using mysql.connector package, …………… function is used.
- open()
- database()
- connect()
- connectdb()
A database …………… controls the connection to an actual database, established from within a Python program.
- database object
- connection object
- fetch object
- query object
A database …………… is a special control structure that facilitates the row by row processing of records in the resultset.
- fetch
- table
- cursor
- query
Which of the following is not a legal method for fetching records from database from within Python?
- fetchone()
- fetchtwo()
- fetchall()
- fetchmany()