>>is there a better solution for exchanging SELECT NEXT(from >>Adabas)-Querys >>with SELECT and FETCH NEXT?? [...] >hm, ok, but the Problem is elswhere... >In the Program, the structure is the mainproblem. There are several >functions that call each other, if I press the 'Next Dataentry'-Button, >several minor-functions are called until finaly(in another >function) the >'Select Next/First...' is called. The Problem is that for
If you keep the session open, then you can execute the SELECT and the first FETCH in the routine where you executed SELECT FIRST and execute FETCH where you execute SELECT NEXT. SELECTs and FETCH don't have to be in the same routine. Just put the routine with the SELECT first in the source file or call the precompiler with -Hnocheck. Daniel Dittmar -- Daniel Dittmar SAP Labs Berlin [EMAIL PROTECTED] -- MaxDB Discussion Mailing List For list archives: http://lists.mysql.com/maxdb To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]
