how about naming columns in select, instead of using cursed '*'?
that usually helps ;)
--
Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general
Hello Guys,
The following is my sample program
result R(T.exec("select * from emp"));
string L;
stringstream S;
vector v;
int z,i;
z = R.size();
for (i = 0;i> L;
v.push_back(L);
}
There is a table emp with single column,while I am working on this module I
encountere