首页 > 数据库 > MySQL > 正文

mysql-connector的概念是啥

2024-07-24 12:33:04
字体:
来源:转载
供稿:网友
  mysql-connector是什么
  使用 mysql-connector 来连接使用 MySQL, mysql-connector 是 MySQL 官方提供的驱动器。
 
  我们可以使用 pip 命令来安装 mysql-connector:
 
  python -m pip install mysql-connector
  使用以下代码测试 mysql-connector 是否安装成功:
 
  demo_mysql_test.py:
  import mysql.connector
  执行以上代码,如果没有产生错误,表明安装成功。
 
  注意:如果你的 MySQL 是 8.0 版本,密码插件验证方式发生了变化,早期版本为 mysql_native_password,8.0 版本为 caching_sha2_password,所以需要做些改变:
 
  先修改 my.ini 配置:
 
  [mysqld]
  default_authentication_plugin=mysql_native_password
  然后在 mysql 下执行以下命令来修改密码:
 
  ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '新密码';
  示例如下:
 
  创建数据库连接
 
  可以使用以下代码来连接数据库:
 
  demo_mysql_test.py:
  import mysql.connector
  
  mydb = mysql.connector.connect(
    host="localhost",       # 数据库主机地址
    user="yourusername",    # 数据库用户名
    passwd="yourpassword"   # 数据库密码
  )
  
  print(mydb)
  关于“mysql-connector的概念是什么”的内容就介绍到这里了,感谢大家的阅读。

(编辑:武林网)

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表