Trueangle Catholic/Art/Scientific Works

O Lord make me an instrument of your peace

less than 1-min read

Connect MySQL database using MySQL-Connector Python

$cat fdb.py
import mysql.connector


conn = mysql.connector.connect(host='localhost',
			database='learning',
			user='jeff',
			password='sixer')
print(conn)
conn.close
$python3  fdb.py
<mysql.connector.connection_cext.CMySQLConnection object at 0x7f143fc84790>
$
← Prev Next →