Pythonsql数据的增删改查简单操作
1.insert
tor
import os
import codecs
#设置数据库⽤户名和密码
user='root';#⽤户名
pwd='root';#密码
host='localhost';#ip地址
mysql面试题 增删改查db='mysql';#所要操作数据库的名字
charset='UTF-8'
t(user=user, password=pwd, host=host, database=db)#设置游标
cursor=cnx.cursor(dictionary=True)#插⼊数据
def insert(table_name, insert_dict):
param='';
value='';
javascript模式pdf
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)
id=cursor.lastrowid
cnxmit()微商代理价格表模板
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)
cnxmit()
java下载大文件解决方案
3.获取数据库信息
#取得数据库信息
关于字符串的函数# 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']
selenium是干嘛的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)
result=cursor.fetchall()
return result
4.显⽰
#显⽰建表语句
#table string 表名
#return string 建表语句
def showCreateTable(table):
sql='show create table %s'%(table)
result=cursor.fetchall()[0]
return result['Create Table']
#print(showCreateTable('gelixi_admin'))
#显⽰表结构语句
def showColumns(table):
sql='show columns from %s '%(table) print(sql)
result=cursor.fetchall()
dict1={}
for info in result:
dict1[info['Field']]=info
return dict1

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。