标签:pre 遍历 exe commit 元组 fetch use close .com
1 #导入psycopg2 2 import psycopg2 3 # 连接到一个给定的数据库 4 conn = psycopg2.connect(database="database", user="user",password="123456", host="192.168.1.1", port="3306") 5 #建立游标,用来执行数据库操作 6 cur = conn.cursor() 7 8 #执行SQL命令 9 cur.execute("SQL命令") 10 11 # 获取SELECT返回的元组 12 rows = cur.fetchall() 13 14 # 遍历元组获取值 15 for row in rows: 16 print(row) 17 18 # 提交SQL命令 19 conn.commit() 20 21 #关闭游标 22 cur.close() 23 24 #关闭数据库连接 25 conn.close()
标签:pre 遍历 exe commit 元组 fetch use close .com
原文地址:https://www.cnblogs.com/mia0812/p/10881385.html