COPY support implemented

Поиск
Список
Период
Сортировка
От Kris Jurka
Тема COPY support implemented
Дата
Msg-id Pine.LNX.4.33.0312300317040.8223-200000@leary.csoft.net
обсуждение исходный текст
Ответы Re: COPY support implemented  (Per-Olof Noren <pelle@alma.nu>)
Список pgsql-jdbc
With the introduction of the V3 protocol in 7.4 it is now possible to
support the COPY protocol in the JDBC driver.  Before it was impossible to
recover from errors and the Connection had to be abandoned.  This patch
implements support for COPY based on the API proposed by Michael
Adler's original patch of about a year ago.

For example

Connection conn = DriverManager.getConnection(...);
CopyManager copy = ((org.postgresql.PGConnection)conn).getCopyAPI();

// copy data from the table to the given output stream
OutputStream output = new ByteArrayOutputStream();
copy.copyOut("tablename",output);

// copy data from the given input stream to the table
InputStream input = new ByteArrayInputStream(output.toByteArray());
copy.copyIn("tablename",input);

Kris Jurka


Вложения

В списке pgsql-jdbc по дате отправления:

Предыдущее
От: "John Sidney-Woollett"
Дата:
Сообщение: Re: Multi-threaded servlet environment
Следующее
От: Kris Jurka
Дата:
Сообщение: ResultSetMetaData enhancements