I'm building a simple delphi program to transfer data from dbf file into sql server. The dbf file it self contain a memo field which data is saved on .fpt file. When i try to open it with ADOQuery, when I tried to scroll down to the next row, I got an error message
Multi-step operation generated errors. check each status value
this is my connection string and query syntax
Provider=VFPOLEDB.1;Data Source=D:\LEARNING CENTER\DATSPP;Mode=Share Deny None;Extended Properties="";User ID="";Password="";Mask Password=False;Cache Authentication=False;Encrypt Password=False;Collating Sequence=MACHINE;DSN=""
select * from dpb.dbf
even when i'm not running the program and try to scroll the dbgrid, i also get this error.
can someone possibly tell me where i'm doing wrong?