ubuntu系统下 python链接mysql数据库的方法
进入root 权限下
apt-get install mysql-server apt-get install mysql-client
创建数据库
mysql -u root -p passward 链接数据库 create database basename use basename
如果数据库存在要进行改动可以直接使用
mysql -u root -p passward basename
创建表
create table latest_face( id int(11) not null auto_increment, camera_id varchar(240) not null, picture mediumblob not null, datetime datetime not null, people_id int(11) not null, people_name varchar(16),accessed int(4) not null,primary key(id) )charset = gb2312;
用python链接数据库。
当使用apt-get install mysql-python
的时候,会提示未发现软件包mysql-python。但是直接下载再安装又非常麻烦,所以使用了pip install mysql-python <br>
在使用pip install mysql-python的时候,提示EnvironmentError: mysql_config not found。此时重装libmysqlclient-dev,pt-get install libmysqlclient-dev
,然后pip install mysql-python.
就安装成功了
在python下输入import MySQLdb测试是否可以使用
相关推荐
YENCSDN 2020-11-17
lsjweiyi 2020-11-17
houmenghu 2020-11-17
Erick 2020-11-17
HeyShHeyou 2020-11-17
以梦为马不负韶华 2020-10-20
lhtzbj 2020-11-17
夜斗不是神 2020-11-17
pythonjw 2020-11-17
dingwun 2020-11-16
lhxxhl 2020-11-16
坚持是一种品质 2020-11-16
染血白衣 2020-11-16
huavhuahua 2020-11-20
meylovezn 2020-11-20
逍遥友 2020-11-20
weiiron 2020-11-16