Hello evrybody.
I access to a Progress Database with PHP through an OpenEdge ODBC Driver.
My connection is good, I can make request. But I have problems with request on several tables.
The following request works :
BUT the following does not work :
In fact, it works only with a 'distinct' or 'count' clause, but not when I want to select fields name as in the second request.
I have this error :
Thank you in advance !
I don't understand...
I access to a Progress Database with PHP through an OpenEdge ODBC Driver.
My connection is good, I can make request. But I have problems with request on several tables.
The following request works :
Code:
"select [B]count(Daccords.codoi_)[/B] from pub.Daccords, pub.Dorgasoc
Where Daccords.codoi_ = Dorgasoc.codoi_
";
Code:
"select [B]Daccords.codoi_[/B] from pub.Daccords, pub.Dorgasoc
Where Daccords.codoi_ = Dorgasoc.codoi_
";
In fact, it works only with a 'distinct' or 'count' clause, but not when I want to select fields name as in the second request.
I have this error :
Code:
[DataDirect][ODBC OPENEDGE driver][OPENEDGE]Le curseur ne peut être ouvert (7511), SQL state S1000 in SQLExecDirect in...
Thank you in advance !
I don't understand...