我一直在尝试使用 Python 将数据加载到 Vertica DB 中。
def test():
try:
connection = psycopg2.connect(db_connect_string)
cursor = connection.cursor()
except psycopg2.DatabaseError, e:
print 'Error %s' % e
sys.exit(1)
cursor.execute("INSERT INTO <table_name> (cusip, ticker) VALUES (%s, %s)"% (1234, "'tkr'"))
connection.commit()
返回时没有错误,但随后的 SELECTS 不返回任何内容。(注意:SELECT 代码经过独立测试并且有效)。