- Get link
- X
- Other Apps
- Get link
- X
- Other Apps
1- Install MySQL community version from official website
2- Finalize the Installation and Configuration
3- use python library for MySQL
"import mysql.connector"
4- Syntax :
mydb = mysql.connector.connect(
host="localhost",
user="root",
password="123456789",
database="mydatabase"
)
- Get link
- X
- Other Apps
Comments
Post a Comment