MySQL
在Django中的配置
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql', # 数据库引擎
'HOST':'localhost', # 数据库主机
'NAME': 'square', # 数据库名字
'PART': 3306, # 数据库端口
'PASSWORD':'123456', # 数据库用户密码
'USER': 'scf' # 数据库用户名
}
}
创建用户
# 创建用户
create user itcast identified by '123456';
# 授予某个数据库的权限 practice是数据库名
grant all on practice.* to 'itcast'@'%';
# 授权后刷新特权
flush privileges;
导入数据
# practice为数据库名字
mysql -uroot -p practice < dump.sql
导出数据
mysqldump -uroot -p practice < dump.sql