I'm using the libpq library in C to accessing my PostgreSQL database. So, when I do res = PQexec(conn, "SELECT point FROM test_point3d"); I don't know how to convert the PGresult I got to my custom data type.

I know I can use the PQgetValue function, but again I don't know how to convert the returning string to my custom data type.

Any suggestion?

Thanks in advice.

link|improve this question

25% accept rate
What is your custom data type? – Frank Bollack May 6 '10 at 9:32
Something like this: typedef struct Point3D { char id[50]; int idnull; double x; double y; double z; } Point3D; I think that I must to parse the returning string of PQgetValue. I'm working on this so if it works I will post it here. :D – mocopera May 6 '10 at 11:36
Almost everything is returned as string. Postgres' arrays are good example for something that's returned as string and has to be parsed by the application to be useful. Depending on what's "test_point3d.point" and how it's represented as/convert to string by Postgres, you'll have to parse that string and convert it to your data type. – Milen A. Radev May 6 '10 at 12:11
Thanks for your replys. Now I think that I understand what is the next to do. At the beggining I was a bit lost. So, it's the programmer's responsibility to parse the returned string. That makes my question solved. :D Greets to all. – mocopera May 6 '10 at 19:17
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.