Issue
In python some times mysqli is used and some other times mysql only is used. Can any pone tell me the differences between both. And when to use what?
mysql.connector()
mysqli.connector()
Solution
mysql.connector
is a Python package, mysqli
is for PHP, which is a different language.
"connector" packages are developed by the MySQL team for a number of languages – see here
Answered By – snakecharmerb
Answer Checked By – David Marino (BugsFixing Volunteer)