美文网首页
Python数据库连接

Python数据库连接

作者: 沧海一粟谦 | 来源:发表于2018-07-03 11:41 被阅读2次

    1.在models 创建Author类 需要注意继承models.Model

    class Author(models.Model):
    #  id = models.AutoField(primary_key=True)
        name=models.CharField(max_length=20)
        dec=models.CharField(max_length=30)
    

    2.安装PyMySQL:IDE中File | Settings | Project: webapp | Project Interpreter 搜索PyMySQL安装
    (或者 pip install pymysql)
    3.settings 配置数据连接

       DATABASES = {
        'default': {
            #数据驱动
            'ENGINE': 'django.db.backends.mysql',
            'NAME': 'test', #链接数据库名称
            'USER': 'root', #数据登陆用户名
            'PASSWORD': '', #
            'HOST': '127.0.0.1',
            'PORT': '3306',
        }
    }
    

    4.在settings头部添加:

    import pymysql
    pymysql.install_as_MySQLdb()
    

    5.在tools |run mamage task

    makemigrations
      
    migrate
    

    相关文章

      网友评论

          本文标题:Python数据库连接

          本文链接:https://www.haomeiwen.com/subject/nayduftx.html