I suggest pg's inserttable should accept a list of columns, same as pgdb's copy_from. We don't need that right now but might make use it in the future if it were available.
http://www.pygresql.org/contents/pg/connection.html#inserttable-insert-a-list-into-a-table def copy_from(self, stream, table, format=None, sep=None, null=None, size=None, columns=None): I think maybe the other optional arguments have no application, since copy_from accepts a stream but inserttable requires a "list of tuples/lists". Justin _______________________________________________ PyGreSQL mailing list [email protected] https://mail.vex.net/mailman/listinfo.cgi/pygresql
