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)
上一篇: python操作oracle数据库
下一篇: python输出网页内容