The integration with MySQL supports the `mysql-connector`_ library and is specified
to trace_integration using 'MySQL'.
import mysql.connector
from opentelemetry.trace import tracer
from opentelemetry.trace.ext.mysql import trace_integration
trace_integration(tracer())
cnx = mysql.connector.connect(database='MySQL_Database')
cursor = cnx.cursor()
cursor.execute("INSERT INTO test (testField) VALUES (123)"
cursor.close()
cnx.close()