Hello,

I have a Postgres sql table with an integer array colum. Say,

create table Tbl ( c INT[2][3] );

One thing that is taking too long to resolve is how does on use QT to populate
say a QMap<int,int> ? The return value from Postgres gives

"{ {1,2,3}, {4,5,6} }" (Quotes not included)

After trying many different approaches, it seems Qt is not able to copy
the data into anything more complicated than a simple QString. Do I
have to parse the return data explicitly, or is there an easier way of
populating a QMap<int,int>??


Thanks!