欢迎来到天天文库
浏览记录
ID:40566746
大小:36.50 KB
页数:3页
时间:2019-08-04
《python数据库操作》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、数据库连接#coding:gbk'''Createdon2010-7-15@author:Administrator'''importcx_Oracledsn=cx_Oracle.makedsn("150.150.1.45",1521,"dx")conn=cx_Oracle.connect("test","123",dsn)print"连接oracle成功!"try:cur=conn.cursor()sql="select*fromportt_type"rr=cur.execute(sql)row=cur.fetchall()forxinrow:print
2、"记录",x[0],x[1]cur.close()exceptException,e:printeelse:print"一切正常"finally:conn.close()print"连接关闭"数据库操作#coding:gbk'''Createdon2010-7-15@author:Administrator'''importcx_Oracle #用户名,密码,服务名 db=cx_Oracle.connect("user","pass","tns_name") c=db.cursor(); #建表 c.execute("createtabletes
3、t(aint,bvarchar2(100))") #建序列 c.execute("createsequencestest") #插入数据 c.execute("insertintotest(a,b)values(stest.nextval,'Python')") c.execute("insertintotest(a,b)values(stest.nextval,'Oracle')") #检索插入的数据 sql="select*fromtest" r=c.execute(sql) row=c.fetchone() whilerow:
4、(a,b)=(row[0],row[1]) printa,b row=c.fetchone() #删除插入的数据 sql="deletefromtestwherea=1" c.execute(sql) #检索 sql="select*fromtest" r=c.execute(sql) row=c.fetchone() whilerow: (a,b)=(row[0],row[1]) printa,b row=c.fetchone() #清理表和序列 c.execute("droptabletest") c.execute("
5、dropsequencestest") db.commit()db.close()
此文档下载收益归作者所有