Binary tx format for an array?

From: "Michael Guyver" <kenevel(at)googlemail(dot)com>
To: pgsql-jdbc(at)postgresql(dot)org
Subject: Binary tx format for an array?
Date: 2006-06-21 17:26:33
Message-ID: 30b57570606211026o66e337c9s658387db0b32aeed@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

Hi there,

My question relates to trying to implement the binary transmission
protocol for an Array type. I understand that the only place the
format is documented is in the Postgres C source code.

I've had a look through it and it seems comprehensible enough (to a
non-C programmer), but I was wondering how the following expression
would evaluate:

// arrayfuncs.c, in array_recv
element_type = pq_getmsgint(buf, sizeof(Oid));

or more specifically, the

int size = sizeof(Oid);

expression. Knowing this value would mean knowing how many bytes
describing the Oid to transmit.

Cheers

Michael

Responses

Browse pgsql-jdbc by date

  From Date Subject
Next Message DanixDefcon5 2006-06-21 18:21:58 Lock-when-Loaded failing
Previous Message Tom Lane 2006-06-21 16:46:34 Re: Limit vs setMaxRows issue