2

作为主题,这是代码,没有错误消息,但没有插入数据。这是我的代码,谁能告诉我它有什么问题?

import psycopg2
import sys
import os
import glob 
import csv

#open the csv folder
dictfile='******'
os.chdir(dictfile)
total=[]
for file in glob.glob("*.csv"):
    total.append(file)
con = None
try: 
    con = psycopg2.connect(host='localhost',database='*****',user='postgres', password='*****') 
    cur = con.cursor()
    for i in range(0,1):   
        filename='/Users/Shared'+'/'+total[0]
        print filename
        #better move all files into shared folder
        x="copy public.crossref_sample from "+ "'"+filename+"'"+" DELIMITERS ',' CSV"
        print x
        cur.execute(x)  
except psycopg2.DatabaseError, e:
    print 'Error %s' % e    
    sys.exit(1) 
finally:
    if con:
        con.close()
4

1 回答 1

6

正如@a_horse_with_no_name 所暗示的,您正在关闭 PostgreSQL 数据库连接,但您没有先提交事务。

如果还没有交易,psycopg2 会为您打开交易。它希望您在完成工作后提交此事务。

除非您明确提交事务,否则关闭连接将回滚已完成的任何工作。

con.commit()在最后一个复制命令之后尝试。

于 2012-12-14T00:31:02.763 回答