Re: Visual Basic Database
Depends. Are you using ADO or DAO. I am assuming that you are opening a recordset. If so, request the record count. That will force JET to read the entire recordset.
However, if you are just moving data (not doing a bunch of manipulation of it in between) then I would just use a SQL query that would do the work for you. You might search INSERT in MSDN.
Re: Visual Basic Database
Hi,
I'm using ADO. I have a recordset open. For some reason even though i have the criteria set all the information is not pulled on the first pass. I have already requested the recordcount in the code and it is looping through the code until the .eof is reached.
Ann Cronin
Re: Visual Basic Database
If you send me the code and zip up the database I would be happy to look it over for you. I've been doing database conversion for several years and should be able to find your problem for you.
My e-mail is [email protected]
If you are using ADO be sure that you are not using any adobatch* options in your open command.