Re: Adding records is very slow.



AFAIK fastest approach to append data into Access table would be to use
TADODataSet in tabledirect mode. Something like this:
ADataSet := TAdoDataSet.create(nil);
ADataSet.ConnectionString := getConnectionString;
ADataSet.CursorLocation := clUseServer;
ADataSet.CommandType := cmdTableDirect;
ADataSet.CommandText := 'MyTable';
ADataSet.Active := true;


.