Django mysqlclient安装和使用详解

作者:叶图大师 时间:2024-01-13 21:13:08 

一、安装mysqlclient

网上看到很过通过命令:pip install mysqlclient 进行安装的教程,但是我却始终安装失败,遇到的错误千奇百怪,后来通过自己下载mysqlclient客户端终于安装成功;

首先打开网址:https://www.lfd.uci.edu/~gohlke/pythonlibs/并找到下面图中的内容部分:

Django mysqlclient安装和使用详解

根据自己的需要,我选择的是最下边的cp38(目测cp38应该是C++版本,下载下来的文件通过pip install 进行安装的时候会进行c++编译,如果你的电脑(我是Windows)上没有安装VC++,那么找个新版本的安装一下即可:https://support.microsoft.com/zh-cn/help/2977003/the-latest-supported-visual-c-downloads)记住如果没有C++,就先安装C++这个;

下载好mysqlclientt之后如下(只要下载1个,我系统是64位,所以先下载的64位的,结果用不了,所以又下载了32位的才成功,所以建议先下载32位的试试):

Django mysqlclient安装和使用详解

打开控制台(开始->运行->cmd):

第一步:cd 到下载的mysqlclient文件所在的目录:cdC:\Users\Yeat\Downloads\mysqlclient

第二步:执行安装命令:pip installmysqlclient-1.4.4-cp38-cp38-win32.whl

如果成功的话会看到:

C:\Users\Yeat\Downloads>pip install mysqlclient-1.4.4-cp38-cp38-win32.whl
Processing c:\users\yeat\downloads\mysqlclient-1.4.4-cp38-cp38-win32.whl
Installing collected packages: mysqlclient
Successfully installed mysqlclient-1.4.4

C:\Users\Yeat\Downloads>当然如果失败的话,那很可能看到类似下图的画面:

C:\Users\Yeat>pip install mysqlclient‑1.3.13‑cp36‑cp36m‑win_amd64.whl
WARNING: Requirement 'mysqlclient‑1.3.13‑cp36‑cp36m‑win_amd64.whl' looks like a filename, but the file does not exist
ERROR: mysqlclient‑1.3.13‑cp36‑cp36m‑win_amd64.whl is not a valid wheel filename.

C:\Users\Yeat>pip install MySQL_python‑1.2.5‑cp27‑none‑win_amd64.whl
WARNING: Requirement 'MySQL_python‑1.2.5‑cp27‑none‑win_amd64.whl' looks like a filename, but the file does not exist
ERROR: MySQL_python‑1.2.5‑cp27‑none‑win_amd64.whl is not a valid wheel filename.

C:\Users\Yeat>pip install MySQL_python‑1.2.5‑cp27‑none‑win_amd64
ERROR: Invalid requirement: 'MySQL_python‑1.2.5‑cp27‑none‑win_amd64'

C:\Users\Yeat>cd C:\Users\Yeat\Downloads

C:\Users\Yeat\Downloads>pip install MySQL_python-1.2.5-cp27-none-win_amd64.whl
ERROR: MySQL_python-1.2.5-cp27-none-win_amd64.whl is not a supported wheel on this platform.

C:\Users\Yeat\Downloads>pip install mysqlclient-1.4.4-cp38-cp38-win_amd64.whl
ERROR: mysqlclient-1.4.4-cp38-cp38-win_amd64.whl is not a supported wheel on this platform.

失败,那就换下载的mysqlclient版本,只能提供这个办法了!!!!

二、在Django框架里使用mysql

1.进入项目工程目录执行命令:django-admin startapp TcesApp,我的完整命令是:C:\Users\Yeat\PycharmProjects\untitled>django-admin startapp TcesApp,前面的部分是我的工程目录路径;

2.命令执行完毕后工程里会增加TcesApp目录如图:

Django mysqlclient安装和使用详解

3.进入models.py中创建与你的数据库表相对应的对象model,我的内容如下:


from django.db import models

class e_exams(models.Model):
ID = models.CharField(max_length=50),
ExamName = models.CharField(max_length=50)
ExamCode = models.CharField(max_length=50)
SceneID = models.CharField(max_length=50)
Creater = models.CharField(max_length=50)
CreateTime = models.DateTimeField()
State = models.CharField(max_length=50)
Field_Char1 = models.CharField(max_length=50)
Field_Char2 = models.CharField(max_length=50)
Field_Char3 = models.CharField(max_length=50)

class Meta:
 db_table = 'e_exams' #数据表名称

我的表结构 e_exams:

Django mysqlclient安装和使用详解

在models.py中可以创建过个表的model。

4.在admin.py中注册model:


from django.contrib import admin
from . import models

# Register your models here.
admin.site.register(models.e_exams)

5.在setting.py中添加app名称(上边的名称 django-admin startapp TcesApp 的名称):

Django mysqlclient安装和使用详解

6.还是在settings.py中修改DATABASES内容如下:

Django mysqlclient安装和使用详解

完整配置:


DATABASES = {
'default': {
 'ENGINE': 'django.db.backends.mysql',
 'NAME': 'tces',
 'USER': 'root',
 'PASSWORD': 'Unity3du#d112233',
 'HOST': 'nas.yeatsoft.com',
 'PORT': '3306',
 'OPTIONS': {
  "init_command": "SET sql_mode='STRICT_TRANS_TABLES'",
 }
}
}

其中NAME是你的数据库名称,HOST是数据库地址,其它的大家都知道。

7.接下来我们到views.py(或者自己创建的py文件)中编写代码主要看 addExam 这个方法:


from django.http import HttpResponse
from django.shortcuts import render
from TcesApp.models import e_exams

def hello(request):
return HttpResponse('home page!')

def helloworld(request):
context = {}
context['value'] = 'hello world!'
return render(request, 'helloworld.html', context)

def addExam(request):
exam = e_exams()
exam.ID = '100001'
exam.SceneID = '1001',
exam.ExamName = '期末考试'
exam.save()
context = {}
context['value'] = exam.ExamName + '数据添加成功!'
return render(request,'helloworld.html',context)

其中helloworld.html是放在templates中的前端页面:

Django mysqlclient安装和使用详解

context['value']就是html页面中的{{value}}

8.到urls.py中添加路径完整代码如下:


from django.contrib import admin
from django.urls import path
from . import home

urlpatterns = [
path('admin/', admin.site.urls),
path('home/', home.hello),
path('helloworld/', home.helloworld),
path('add/',home.addExam)
]

三、运行效果如下:

Django mysqlclient安装和使用详解

Django mysqlclient安装和使用详解

Django mysqlclient安装和使用详解

来源:https://www.cnblogs.com/mr-yoatl/p/11756810.html

标签:Django,mysqlclient
0
投稿

猜你喜欢

  • Mysql优化策略(推荐)

    2024-01-19 15:18:34
  • CMD命令操作MySql数据库的方法详解

    2024-01-16 08:31:57
  • 10分钟搭建自己的Git仓库

    2023-05-18 21:10:19
  • js将table的每个td的内容自动赋值给其title属性的方法

    2023-08-07 18:34:54
  • 一场关于YUI3/jQuery的精彩辩论

    2010-11-11 12:50:00
  • 很好用的PHP数据库类

    2024-05-11 09:52:10
  • Python走楼梯问题解决方法示例

    2021-07-07 22:57:51
  • numpy实现神经网络反向传播算法的步骤

    2021-02-11 10:54:34
  • Unicode和Python的中文处理

    2022-08-17 21:05:27
  • Python抽象类应用详情

    2022-03-24 17:41:13
  • python模块之paramiko实例代码

    2022-08-08 08:34:51
  • 一个js封装的不错的选项卡效果代码

    2024-02-26 11:23:59
  • Python爬虫爬取一个网页上的图片地址实例代码

    2021-07-25 09:58:25
  • Pandas中八个常用option设置的示例详解

    2022-10-15 15:46:30
  • 基于Python实现牛牛套圈小游戏的示例代码

    2022-04-04 03:50:23
  • Windows 8.1 64bit下搭建 Scrapy 0.22 环境

    2023-07-23 12:51:08
  • 使用Pyhton 分析酒店针孔摄像头

    2022-04-16 18:59:24
  • Python破解BiliBili滑块验证码的思路详解(完美避开人机识别)

    2022-08-23 06:39:23
  • Thinkphp5微信小程序获取用户信息接口的实例详解

    2023-10-26 09:57:08
  • Javascript(es2016) import和require用法和区别详解

    2024-04-19 09:57:04
  • asp之家 网络编程 m.aspxhome.com