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