欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python操作oracle数据库

程序员文章站 2022-06-11 19:44:13
...
这里用到了dcoracle2模块:
import DCOracle2
import time

db=DCOracle2.connect("dev/dev@test")
cursor=db.cursor()

while(1):
	cursor.execute("select * from test")
	d=cursor.fetchone()
	id = d[0]
	

	db.commit()
	time.sleep(0.1)