Re: Is there a way to describe precision and scale for columns in a s

Поиск
Список
Период
Сортировка
От L J Bayuk
Тема Re: Is there a way to describe precision and scale for columns in a s
Дата
Msg-id 200406070044.i570i4LN000718@mindspring.com
обсуждение исходный текст
Ответ на Is there a way to describe precision and scale for columns in a s elect statement using libpq?  (Brijesh Shrivastav <Bshrivastav@esri.com>)
Ответы Re: Is there a way to describe precision and scale for columns in a s  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-interfaces
Brijesh Shrivastav wrote:
> 
> 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?

It's a little tricky. Use PQfmod() on the column.  Call the result F.
The precision is the high 16 bits, and the scale is the low 16 bits,
but with an offset of 4 first:    precision = ((F - 4)  >> 16) & 0xffff;    scale = (F - 4) & 0xffff;

> 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?

I don't think so. The protocol supports it ("Describe" message on a named
prepared statement, without Bind or Execute), and I assume the backend
would play along, but I don't think libpq has any way to let you do it
in the current release.


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

Предыдущее
От: "David Killian"
Дата:
Сообщение: Problem linking libpq
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Is there a way to describe precision and scale for columns in a s