Computer Science

To reflect the changes made in the database permanently, you need to run <connection>. …………… method.

  1. done()
  2. reflect()
  3. commit()
  4. final()

Python MySQL

3 Likes

Answer

commit()

Reason — The <connection>.commit() method is used to permanently reflect the changes made in the database when working with database connections in Python.

Answered By

1 Like


Related Questions