Hi! All,
I am a new postgres developer and as is the case with many of us I am
porting
an existing application to postgres database. One of the requirement for us
is to be able to determine the scale and precision for select columns so we
can
accordingly allordingly allocate memory or inform client applications.
I looked at libpq api and found following api to describe a select statement
PQfname()
PQftype()
PQfsize()
However, PQfsize() gives me the space alloced for this column in database
row. How
can I get precision and scale for numeric columns?
I have run into another problem. I execute PREPARE statement with pgexec to
prepare
the query before executing it multiple time with different parameter values.
It
seems I can't get the select column information untill I perform an
PQexecPrepared().
Is there any way around it?
Thanks in advance,
Brijesh Shrivastav