MySQL是一种常见的关系型数据库管理系统,它广泛用于Web应用程序和其他数据处理任务。在使用MySQL之前,需要先配置它与应用程序的连接。下面是一些简单的步骤来配置MySQL数据库连接。
步骤1:安装MySQL数据库:
$ sudo apt-get update
$ sudo apt-get install mysql-server
步骤2:安装MySQL Python驱动程序:
$ sudo apt-get install python-mysqldb
步骤3:创建MySQL数据库和表:
$ mysql -u root -p
Enter password:
mysql>CREATE DATABASE testdb;
mysql>USE testdb;
mysql>CREATE TABLE testing (id INT, name VARCHAR(20));
步骤4:Python连接到MySQL数据库:
import MySQLdb
db = MySQLdb.connect(host="localhost", user="root", passwd="password", db="testdb")
cursor = db.cursor()
sql = "INSERT INTO testing (id, name) VALUES (%d, '%s')" % (1, 'test')
try:
cursor.execute(sql)
db.commit()
except:
db.rollback()
db.close()
上述代码中host、user、passwd、db参数需要替换为自己的数据库连接信息。
经过以上4个步骤,就可以成功连接MySQL数据库,并进行数据的CRUD操作。