博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql-databaseython 3.4.0 with MySQL database
阅读量:6283 次
发布时间:2019-06-22

本文共 895 字,大约阅读时间需要 2 分钟。

           
 
No problem. We won't show you that ad again. Why didn't you like it?
  • Uninteresting
  • Misleading
  • Offensive
  • Repetitive
  • Other
        
20
7

I have installed Python version 3.4.0 and I would like to do a project with MySQL database. I downloaded and tried installing MySQLdb, but it wasn't successful for this version of Python. Any suggestions how could I fix this problem and install it properly?

|
 
   

9 Answers                                 9

                 
        
28accepted

MySQLdb does not support Python 3 but it is not the only MySQL driver for Python.

is essentially just a fork of MySQLdb with Python 3 support merged in (and a few other improvements).

is a pure python MySQL driver, which means it is slower, but it does not require a compiled C component or MySQL libraries and header files to be installed on client machines. It has Python 3 support.

转载于:https://www.cnblogs.com/kungfupanda/p/5774902.html

你可能感兴趣的文章
从源码剖析useState的执行过程
查看>>
地包天如何矫正?
查看>>
中间件
查看>>
Android SharedPreferences
查看>>
css面试题
查看>>
Vue组建通信
查看>>
用CSS画一个带阴影的三角形
查看>>
前端Vue:函数式组件
查看>>
程鑫峰:1.26特朗.普力挺美元力挽狂澜,伦敦金行情分析
查看>>
safari下video标签无法播放视频的问题
查看>>
01 iOS中UISearchBar 如何更改背景颜色,如何去掉两条黑线
查看>>
对象的继承及对象相关内容探究
查看>>
Spring: IOC容器的实现
查看>>
Serverless五大优势,成本和规模不是最重要的,这点才是
查看>>
Nginx 极简入门教程!
查看>>
iOS BLE 开发小记[4] 如何实现 CoreBluetooth 后台运行模式
查看>>
Item 23 不要在代码中使用新的原生态类型(raw type)
查看>>
为网页添加留言功能
查看>>
JavaScript—数组(17)
查看>>
Android 密钥保护和 C/S 网络传输安全理论指南
查看>>