(libpq question) Holy cow, what's all this fluff?!

From: Matthew Hagerty <matthew(at)venux(dot)net>
To: pgsql-interfaces(at)postgreSQL(dot)org
Subject: (libpq question) Holy cow, what's all this fluff?!
Date: 1999-02-13 23:35:20
Message-ID: 4.1.19990213182304.0095d400@mail.venux.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

Greetings,

When using the PQgetvalue() function of libpq, the results, at least char
fields, return the value in full, i.e. a char(20) field with the text
"Matthew" for example returns "Matthew " (all 20 characters,
padded with spaces).

I'm sure there is a good reason for this? But, none the less, I would like
to turn it off if I can, otherwise I'm off to writing a small function to
strip the spaces off. This is kind of a pain though because I don't need
to modify the values, just display them, or fill a browser's form fields
with values from the database (which is my biggest need to strip the
fluff). The docs say that I should not access the structure holding query
results, so I will have to malloc each value, copy it, strip the fluff,
send it out on its way, and release the memory. More housekeeping, yuck!
Not to mention more processing time. Please tell me there is a way to get
field values with libpq that are exact to the content length and not the
field length.

Thanks,
Matthew

Responses

Browse pgsql-interfaces by date

  From Date Subject
Next Message David Ford 1999-02-13 23:44:11 Re: [INTERFACES] (libpq question) Holy cow, what's all this fluff?!
Previous Message Randall W. Barrett 1999-02-13 21:48:07 NT Port