1

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).

1 Answer 1

1

You shouldn't just use adapt with copy_from.

copy_from expects a format different than SQL quoting.

For strings, I'd suggest to write your own copy_adapt function, which should escape tabs with \t, CR with \r and 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.

Sign up to request clarification or add additional context in comments.

1 Comment

how do i know how to do things like convert datetimes into a format postgres accepts?

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.