Re: API Question v7.3

From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: Evert Carton <evertcarton(at)netscape(dot)net>
Cc: pgsql-interfaces(at)postgresql(dot)org
Subject: Re: API Question v7.3
Date: 2002-10-30 05:06:08
Message-ID: 200210300506.g9U568v16813@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces


Atttypmod is a generic data type modifier. It is stored in pg_attribute
and controls length for varlena types, and precision/decimals for
numeric types, among other things. You can look in the adt/* files to
see how each type uses atttypmod.

---------------------------------------------------------------------------

Evert Carton wrote:
> Hi all,
>
> I am working on an interface between PG73 and SAS shareservers.
> SAS-share-servers allow SQL-queries to be passed to the server, and returns results.
>
> There is a C library for it.
>
> I chose 7.3, although beta because of the table-API, mainly because of the new API, and the deprecation of the old API.
>
> I succeeded so far, more or less. I got it working with character data.
> The problem lies in numeric and date/time/datatime.
> I've been looking for information regarding atttypmod.
> Since I don't use libpq, I guess I have to create my own atttypmod value.
> But how ?
> I found some clues in the sources : src/.../utils/adt/*.c files
> Is there some more documentation about the meaning/structure of the atttypmod for the following datatypes :
> char
> varchar
> bytea
> numeric
> float
> date/time/datetime ...
>
> Regards,
>
> Evert Carton
> Medical Research Laboratories
>
> __________________________________________________________________
> The NEW Netscape 7.0 browser is now available. Upgrade now! http://channels.netscape.com/ns/browsers/download.jsp
>
> Get your own FREE, personal Netscape Mail account today at http://webmail.netscape.com/
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster
>

--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073

In response to

Browse pgsql-interfaces by date

  From Date Subject
Next Message Adam Witney 2002-10-31 15:30:13 Arrays and DBD:Pg
Previous Message Evert Carton 2002-10-30 04:45:50 API Question v7.3