将数据从表导出到文本文件时出现意外类型错误

时间:2018-06-07 08:04:51

标签: python postgresql python-2.7 pyqt4

我正在尝试将表中的数据导出到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'

1 个答案:

答案 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。如果您没有书面许可,上述所有内容都毫无结果。