Computer Science

A database …………… controls the connection to an actual database, established from within a Python program.

  1. database object
  2. connection object
  3. fetch object
  4. query object

Python MySQL

3 Likes

Answer

connection object

Reason — A database connection object controls the connection to the database. It represents a unique session with a database connected from within a script/program.

Answered By

2 Likes


Related Questions