Python Django mysqlclient安裝和使用


一、安裝mysqlclient

網上看到很過通過命令:pip install mysqlclient 進行安裝的教程,但是我卻始終安裝失敗,遇到的錯誤千奇百怪,后來通過自己下載mysqlclient客戶端終於安裝成功;

首先打開網址:https://www.lfd.uci.edu/~gohlke/pythonlibs/#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位的試試):

 

 打開控制台(開始->運行->cmd):

第一步:cd 到下載的mysqlclient文件所在的目錄:cd C:\Users\Yeat\Downloads\mysqlclient

第二步:執行安裝命令:pip install mysqlclient-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目錄如圖:

 

 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:

在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 的名稱):

 

 6.還是在settings.py中修改DATABASES內容如下:

 完整配置:

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中的前端頁面:

 

 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)
]

 

三、運行效果如下:

 

 

 

 

 

 

結束!

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM