vfp 9
sp2
in a heavily used multi user environment, what is best to use
each station (up to 10 stations possibly), each inserting 3000+ records each at a given time (processing orders etc..)
or
which is better from your experience for:
speed?
record locking?
etc..
Ali Koumaiha
TeknoSoft Inc.
Michigan
sp2
in a heavily used multi user environment, what is best to use
each station (up to 10 stations possibly), each inserting 3000+ records each at a given time (processing orders etc..)
Code:
select myCursor
scan
process some stuff
&& add record in table
insert into myTable (field1, field2) values (bla, bla)
endscan
Code:
select mycursor
scan
process some stuff
select myTable
append blank
repalce field1 with bla,;
field2 with bla in myTable
endscan
which is better from your experience for:
speed?
record locking?
etc..
Ali Koumaiha
TeknoSoft Inc.
Michigan