Python Sql数据库增删改查操作简单封装


Posted in Python onApril 18, 2016

本文实例为大家分享了如何利用Python对数据库的增删改查进行简单的封装,供大家参考,具体内容如下

1.insert    

import mysql.connector
import os
import codecs
#设置数据库用户名和密码
user='root';#用户名
pwd='root';#密码
host='localhost';#ip地址
db='mysql';#所要操作数据库名字
charset='UTF-8'
cnx = mysql.connector.connect(user=user,password=pwd, host=host, database=db)
#设置游标
cursor = cnx.cursor(dictionary=True)
#插入数据
#print(insert('gelixi_help_type',{'type_name':'\'sddfdsfs\'','type_sort':'283'}))
def insert(table_name,insert_dict):
  param='';
  value='';
  if(isinstance(insert_dict,dict)):
    for key in insert_dict.keys():
      param=param+key+","
      value=value+insert_dict[key]+','
    param=param[:-1]
    value=value[:-1]
  sql="insert into %s (%s) values(%s)"%(table_name,param,value)
  cursor.execute(sql)
  id=cursor.lastrowid
  cnx.commit()
  return id

2.delete    

def delete(table_name,where=''):
  if(where!=''):
    str='where'
    for key_value in where.keys():
      value=where[key_value]
      str=str+' '+key_value+'='+value+' '+'and'
    where=str[:-3]
    sql="delete from %s %s"%(table_name,where)
    cursor.execute(sql)
    cnx.commit()

3.select    

#取得数据库信息
# print(select({'table':'gelixi_help_type','where':{'help_show': '1'}},'type_name,type_id'))
def select(param,fields='*'):
  table=param['table']
  if('where' in param):
    thewhere=param['where']
    if(isinstance (thewhere,dict)):
      keys=thewhere.keys()
      str='where';
      for key_value in keys:
        value=thewhere[key_value]
        str=str+' '+key_value+'='+value+' '+'and'
      where=str[:-3]
  else:
    where=''
  sql="select %s from %s %s"%(fields,table,where)
  cursor.execute(sql)
  result=cursor.fetchall()
  return result

4.showtable,showcolumns    

#显示建表语句
#table string 表名
#return string 建表语句
def showCreateTable(table):
  sql='show create table %s'%(table)
  cursor.execute(sql)
  result=cursor.fetchall()[0]
  return result['Create Table']
#print(showCreateTable('gelixi_admin'))
#显示表结构语句
def showColumns(table):
  sql='show columns from %s '%(table)
  print(sql)
  cursor.execute(sql)
  result=cursor.fetchall()
  dict1={}
  for info in result:
    dict1[info['Field']]=info
  return dict1

以上就是Python Sql数据库增删改查操作的相关操作,希望对大家的学习有所帮助。

Python 相关文章推荐
利用Python爬取微博数据生成词云图片实例代码
Aug 31 Python
Python实现PS滤镜特效之扇形变换效果示例
Jan 26 Python
Python 装饰器实现DRY(不重复代码)原则
Mar 05 Python
pygame游戏之旅 添加icon和bgm音效的方法
Nov 21 Python
对Python生成汉字字库文字,以及转换为文字图片的实例详解
Jan 29 Python
python调用外部程序的实操步骤
Mar 04 Python
python原类、类的创建过程与方法详解
Jul 19 Python
Python Selenium安装及环境配置的实现
Mar 17 Python
Python如何使用ElementTree解析xml
Oct 12 Python
python 破解加密zip文件的密码
Apr 22 Python
一篇文章弄懂Python中的内建函数
Aug 07 Python
Python游戏开发实例之graphics实现AI五子棋
Nov 01 Python
python使用paramiko实现远程拷贝文件的方法
Apr 18 #Python
python UNIX_TIMESTAMP时间处理方法分析
Apr 18 #Python
python动态加载包的方法小结
Apr 18 #Python
python实现按行切分文本文件的方法
Apr 18 #Python
Python获取linux主机ip的简单实现方法
Apr 18 #Python
Python实现递归遍历文件夹并删除文件
Apr 18 #Python
Python简单实现TCP包发送十六进制数据的方法
Apr 16 #Python
You might like
一些花式咖啡的配方
2021/03/03 冲泡冲煮
探讨如何把session存入数据库
2013/06/07 PHP
ThinkPHP分页类使用详解
2014/03/05 PHP
PHP向socket服务器收发数据的方法
2015/01/24 PHP
UTF-8正则表达式如何匹配汉字
2015/08/03 PHP
简要剖析PHP的Yii框架的组件化机制的基本知识
2016/03/17 PHP
php 截取utf-8格式的字符串实例代码
2016/10/30 PHP
PHP类的自动加载与命名空间用法实例分析
2020/06/05 PHP
通过DOM脚本去设置样式信息
2010/09/19 Javascript
nodejs导出excel的方法
2015/06/30 NodeJs
javascript中的altKey 和 Event属性大全
2015/11/06 Javascript
jQuery使用zTree插件实现树形菜单和异步加载
2016/02/25 Javascript
一道关于JavaScript变量作用域的面试题
2016/03/08 Javascript
Javascript中prototype的使用详解
2016/06/18 Javascript
AngularJS 模块详解及简单实例
2016/07/28 Javascript
微信公众号开发 实现点击返回按钮就返回到聊天界面
2016/12/15 Javascript
vue双向绑定的简单实现
2016/12/22 Javascript
jquery仿ps颜色拾取功能
2017/03/08 Javascript
vue头部导航动态点击处理方法
2018/11/02 Javascript
vue2.0 获取从http接口中获取数据,组件开发,路由配置方式
2019/11/04 Javascript
python 实现归并排序算法
2012/06/05 Python
python探索之BaseHTTPServer-实现Web服务器介绍
2017/10/28 Python
django中media媒体路径设置的步骤
2019/11/15 Python
Python制作数据预测集成工具(值得收藏)
2020/08/21 Python
戴尔英国官网:Dell英国
2017/05/27 全球购物
新锐科技Java程序员面试题
2016/07/25 面试题
给校长的建议书300字
2014/05/16 职场文书
大学生找工作求职信
2014/07/09 职场文书
明星员工获奖感言
2014/08/14 职场文书
蜗居观后感
2015/06/11 职场文书
小学语文教师竞聘演讲稿范文
2019/08/09 职场文书
深度学习详解之初试机器学习
2021/04/14 Python
Python打包exe时各种异常处理方案总结
2021/05/18 Python
分析JVM源码之Thread.interrupt系统级别线程打断
2021/06/29 Java/Android
SpringBoot整合RabbitMQ的5种模式实战
2021/08/02 Java/Android
永中文档在线转换预览基于nginx配置部署方案
2022/06/10 Servers