This is a repost from the nwnx forum, maybe here can it have more visibility
Hi all, i've searched this along the forum, but with any results..
If i need to do two o more SQLFetch() in a while structure, like this:
sSQL = "SELECT * FROM table1 ";
SQLExecDirect(sSQL);
while(SQLFetch()==SQL_SUCCESS){
sSQL = "SELECT * FROM table2 ";
SQLExecDirect(sSQL);
while(SQLFetch()==SQL_SUCCESS){
//Other Code Line
}
}
and i can't or don't want to do a join, how i can accomplish that?
I've read some pappillon's post where he say that the Hashset plugin is
for this, but the plugin is for windows only and i'm using linux : (
Any hint? Thanks in advance.
Modifié par Epitaffio, 14 décembre 2011 - 12:00 .