I use TAutoget class in my program.
To fill my array I use
- Code: Select all Expand view
klanten->(dbgotop())
do while !klanten->(eof())
aadd(aItems,(klanten->naam))
klanten->(dbskip())
enddo
The problem is that on a network, see http://forums.fivetechsupport.com/viewtopic.php?f=3&t=19548 the program slows down and just to fill this array, it take 20sec (4500 records). (When no other user has opened the program, only 0.2sec)
Is there a faster was to fill my array, or can Tautoget can direcly seek in a database instead of an array
Thanks,
Marc