What function can I use to adapt values for suitable use in a COPY FROM statement? I tried this adapt function:
from psycopg2.extensions import adapt
However, it gives the wrong thing for datetimes (appends ::timestsamp to the string, postgres doesn’t like it) and string (wraps them in single quotes, e.g. empty string is ”, where it seems no quotes should be used).
You shouldn’t just use
adaptwithcopy_from.copy_fromexpects a format different than SQL quoting.For strings, I’d suggest to write your own
copy_adaptfunction, which should escape tabs with\t, CR with\rand LF with\n.Values for timestamp / date columns should be formatted (with strftime?) like the string which you see when you
SELECT now()in Postgres.Tuple elements should be saparated by tabs, and whole tuple finished with newline.