Re: troubles with getting data from tables - Mailing list pgsql-interfaces

From Jeroen T. Vermeulen
Subject Re: troubles with getting data from tables
Date
Msg-id 20030923164504.GA70502@xs4all.nl
Whole thread Raw
In response to troubles with getting data from tables  (Roman Bogorodskiy <bogorodskiy@inbox.ru>)
Responses Re: troubles with getting data from tables  (Roman Bogorodskiy <bogorodskiy@inbox.ru>)
List pgsql-interfaces
On Tue, Sep 23, 2003 at 08:17:50PM +0400, Roman Bogorodskiy wrote:
>         sprintf(query, "SELECT * FROM users WHERE name=\'%s\';", login);
>         if (PQntuples(res) == 1) {
>                 int uid_field_index;
>                 unsigned int *uid;
> 
>                 uid_field_index = PQfnumber(res, "uid");

First off, a question: why don't you just select the field you want, so
you know its index in the result set?  That'll probably transport less 
data, save you that PQfnumber() call, and make your code shorter and
more readable.


>                 uid = (int *) PQgetvalue(res, 0, uid_field_index);

> But instead of '1001' "uid" value is '134820376'. Where I was wrong?

The pointer you're getting is a pointer-to-char, i.e. a string.  Unless
you explicitly enabled the "binary tuples" option, what you're getting is
exactly that: a string.  But instead of parsing the string, you're
casting its base pointer to pointer-to-int!


Jeroen



pgsql-interfaces by date:

Previous
From: Roman Bogorodskiy
Date:
Subject: troubles with getting data from tables
Next
From: Ryan Mooney
Date:
Subject: ECPG insert into table name as a variable