博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python+Django数据库配置及使用——执行原始SQL
阅读量:6296 次
发布时间:2019-06-22

本文共 1373 字,大约阅读时间需要 4 分钟。

开发环境

OS:Windows Server 2012

Python:2.7.5

Django:1.5.2

通过 settings.py 配置数据库

DATABASES = {    'default': {        #'ENGINE': 'django.db.backends.', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.        'ENGINE': 'django.db.backends.sqlite3', #添加数据库引擎;选项['postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'].        'NAME': 'F:/TestPython/blog/blog/db/data.db', # 数据库文件的路径.        # The following settings are not used with sqlite3:        # 下面的配置不适用于sqlite3:        'USER': '',    # 数据库登陆用户名        'PASSWORD': '', # 数据库登陆密码        'HOST': '',                      # Empty for localhost through domain sockets or '127.0.0.1' for localhost through TCP. # 主机名        'PORT': '',                      # Set to empty string for default. # 端口号    }}

使用数据库——查询

首先引入数据库模块

from django.db import connection

假设我的data.db数据库里面又一张名为 Customer 的表;接下来执行查询:

data = []cursor = connection.cursor()cursor.execute('select * from customer')for row in cursor.fetchall():    data.append(row[0])

正常情况下这个执行将会成功。row[0] 表示的是取 Customer 表的第一列的值。

使用数据库——更新

首先引入数据库模块

from django.db import connection,transaction

假设同上,接下来执行更新:

cursor = connection.cursor()cursor.execute("update customer set customername = '%s',tel = '%s' where Id = 1"%(un,tel))transaction.commit_unless_managed()  #记得提交事务

总结

对数据库的操作无非 CRUD ,没有什么好介绍的。其他数据库的使用类似,若 Python 没有集成,可能需要再下载对应数据库的驱动模块。还有添加和删除没有写,其实有了更新剩下这两个就很easy了。

转载地址:http://frlta.baihongyu.com/

你可能感兴趣的文章
rpmfusion 的国内大学 NEU 源配置
查看>>
spring jpa 配置详解
查看>>
IOE,为什么去IOE?
查看>>
Storm中的Worker
查看>>
dangdang.ddframe.job中页面修改表达式后进行检查
查看>>
Web基础架构:负载均衡和LVS
查看>>
Linux下c/c++相对路径动态库的生成与使用
查看>>
SHELL实现跳板机,只允许用户执行少量允许的命令
查看>>
SpringBoot 整合Redis
查看>>
2014上半年大片早知道
查看>>
Android 6.0指纹识别App开发案例
查看>>
正文提取算法
查看>>
轻松学PHP
查看>>
Linux中的网络监控命令
查看>>
this的用法
查看>>
windows下安装redis
查看>>
CentOS7 yum 安装git
查看>>
启动日志中频繁出现以下信息
查看>>
httpd – 对Apache的DFOREGROUND感到困惑
查看>>
分布式锁的一点理解
查看>>