Re: retreive record set

From: "Michael GUIARD" <michael(at)nestor-tech(dot)com>
To: "Magnus Hagander" <mha(at)sollentuna(dot)net>
Cc: <pgsql-hackers-win32(at)postgresql(dot)org>
Subject: Re: retreive record set
Date: 2005-08-01 08:41:44
Message-ID: 004001c59674$daade790$027ba8c0@NSTMike
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers-win32

Hi Magnus,

I understood that I am not supposed to know how PGresult stores the data,
but I do not know how to fill my structure directly rather than to fill it
field by field.
I saw ecpg gives methods to do this (with descriptors), but I do not
understand all about it, and I think it is too complicated for my small
needs. Further, I do not want to change the implementation of postgreqsl
libpq.

So if I have no other choice than convert all result fields to fill my
structure I will do this ...

what is your advices about this ?

thanks a lot
Mike

----- Original Message -----
From: "Magnus Hagander" <mha(at)sollentuna(dot)net>
To: "Michael GUIARD" <m(dot)guiard(at)nestor-tech(dot)com>;
<pgsql-hackers-win32(at)postgresql(dot)org>
Sent: Monday, August 01, 2005 10:03 AM
Subject: RE: [pgsql-hackers-win32] retreive record set

> Hi !
>
> I'd like to get my request results in a record set as a C
> structure using libpq.
> Is it possible or do I have to use ECPG only ?
>
> How PGresult pointer stores the results ?
> Actually I can convert all my result fields from PGresult to
> my C structure but I think also it is a little bit stupid if
> PGresult does its own conversion before ... no ?

You are not suppsed to know how PGresult stores the data, you are only
permitted to access it through the accessor functions. This is so it's
possible to change the underlying implementation without breaking your
apps...

You *can* access the data directly, all the rqeuired structs are in the
include files (but not in the libpq-fe.h file - you need the full
includes). I would stronly advise you not to, though.

//Magnus
---------------------------------------------------------------------------------------
Wanadoo vous informe que cet e-mail a ete controle par l'anti-virus mail.
Aucun virus connu a ce jour par nos services n'a ete detecte.

In response to

Browse pgsql-hackers-win32 by date

  From Date Subject
Next Message Michael GUIARD 2005-08-01 11:32:34 Re: retreive record set
Previous Message Magnus Hagander 2005-08-01 08:03:05 Re: retreive record set