C++ read int array with libpqxx

Поиск
Список
Период
Сортировка
От alexandros_e
Тема C++ read int array with libpqxx
Дата
Msg-id 1394224727721-5795212.post@n5.nabble.com
обсуждение исходный текст
Список pgsql-interfaces
Hello experts,

I want to retrieve integer arrays (type integer[]) from Postgres DB through
C++ and libpqxx. Older posts (2007) suggest to read the array as string and
make a custom function that parses the text representation '{1,2,3}' and
then get the integer values. Has anything improved on this matter? Can I
actually get the integer array directly? 

If not should I do "SELECT id, myIntegerArrayField FROM DBTable" within C++
or I should first do the text conversion from SQL like "SELECT id,
array_to_string(myIntegerArrayField,',') FROM DBTable" and then parse the
string returned.

I appreciate your feedback.



--
View this message in context: http://postgresql.1045698.n5.nabble.com/C-read-int-array-with-libpqxx-tp5795212.html
Sent from the PostgreSQL - interfaces mailing list archive at Nabble.com.



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

Предыдущее
От: Karthik Segpi
Дата:
Сообщение: PQunescapebytea not reverse of PQescapebytea?
Следующее
От: Vernon E
Дата:
Сообщение: Which Java class in the new java.time package shall be used to mapped timestamp?