我正在尝试将表中的数据导出到txt文件。我的代码如下
class Optimization_goolge(object):
def __init__(self):
self.dbname = ""
self.usr_name = ""
self.usr_pass = ""
self.con = ""
self.cur = ""
self.openTime=""
def vT(self, x, y, z, openTime):
try:
con_string="dbname = '%s' user = '%s' password ='%s' host = 'localhost'"%(x,y,z)
con = psycopg2.connect(con_string)
con.set_isolation_level(0)
cur = con.cursor()
cur.execute(("""COPY (select source, target, sum(cost)/1000 as cost from distance_matrix where source != 88888888 and target
!= 88888888 group by source, target order by source) TO '%s\\vrp_distance.txt'""") % (os.getcwd()))
con.commit()
但我收到错误
error vT Function could not open file "D:\working_copy\vrp_distance.txt" for writing: No such file or directory
Error optimizeFxn_google arguments did not match any overloaded call:
QMessageBox.warning(QWidget, QString, QString, QMessageBox.StandardButtons buttons=QMessageBox.Ok, QMessageBox.StandardButton defaultButton=QMessageBox.NoButton): argument 1 has unexpected type 'Optimization_goolge'
QMessageBox.warning(QWidget, QString, QString, int, int, int button2=0): argument 1 has unexpected type 'Optimization_goolge'
QMessageBox.warning(QWidget, QString, QString, QString, QString button1Text=QString(), QString button2Text=QString(), int defaultButtonNumber=0, int escapeButtonNumber=-1): argument 1 has unexpected type 'Optimization_goolge'
答案 0 :(得分:2)
尝试:
import os
dir_path = os.path.dirname(os.path.realpath(__file__))
filepath = os.path.join(dir_path, 'vrp_distance.txt')
sql_statement = ("COPY (select source, target, sum(cost)/1000"
" as cost from distance_matrix where source != 88888888 and target"
" != 88888888 group by source, target order by source) TO"
" '{}'".format(filepath))
需要考虑的旁注(不是原始问题):
OptimizationGoolge
vT
重命名为有意义的你也必须检查:
assert os.path.exists('D:/working_copy/vrp_distance.txt')
assert os.path.exists('D:/working_copy')
同时检查Save PL/pgSQL output from PostgreSQL to a CSV file。如果您没有书面许可,上述所有内容都毫无结果。