Re: C++: headache with PgDatabase::GetValue (int, string) - Mailing list pgsql-interfaces

From Tom Lane
Subject Re: C++: headache with PgDatabase::GetValue (int, string)
Date
Msg-id 24143.1013980901@sss.pgh.pa.us
Whole thread Raw
In response to C++: headache with PgDatabase::GetValue (int, string)  ("Carlos Moreno" <moreno@mochima.com>)
List pgsql-interfaces
"Carlos Moreno" <moreno@mochima.com> writes:
> I have a SELECT statement that returns 
> data from both tables, and I need both Name fields: 

>     "select Emp.Name, Dept.Name from Emp, Dept where ....... "

> Now, I (obviously) want to use GetValue (row, "field_name") to 
> get the values. 

If you "obviously" want to use a fetch-by-name operation to fetch
fields, then it'd behoove you to name the columns differently in the
first place.  For example:
   select Emp.Name as emp_name, Dept.Name as dep_name from ...
        regards, tom lane


pgsql-interfaces by date:

Previous
From: "Carlos Moreno"
Date:
Subject: C++: headache with PgDatabase::GetValue (int, string)
Next
From: Hiroshi Inoue
Date:
Subject: Re: odbc on unix