I have an import mechanism built for a database. The backup is 8000 records so using the NB command to import from a CSV file takes 2-3 minutes to complete.
I tried to put an update on a custom window indicating number of records in the table at that moment using the special variable [ID.Table.$RecCount]. I included this var in a SimpleText object and I use a timer to refresh it (I have tried 1 second and 10 seconds). It should show how far along the import has gone. I can see similar results using a page from PHPMyAdmin and verify the process is a bit slow.
The timer seems to fire at best one time during the import. I am guessing it is because it can't do its count when the import command is working.
Is there a way to have two things happen at the same time in NB or is this single thread issue a real limit? Example: should a counter be able to set a variable WHILE another command is in process?