I have one StringGrid, DataSource, ADOConnection and an ADOQuery on my form. I am trying to update an Access db:
adoQ.SQL.Text := 'SELECT PLAYERS.COUNTRY .... {abbreviated}
adoQ.Active := True;
Then
adoQ.SQL.Text := 'UPDATE GUESTHOUSES... {abbreviated}
adoQ.Active := True;
The error is 'Current provider does not support returning multiple recordsets from a single execution'.
I would have thought these are two separate executions. What am I doing wrong?
Hannes
adoQ.SQL.Text := 'SELECT PLAYERS.COUNTRY .... {abbreviated}
adoQ.Active := True;
Then
adoQ.SQL.Text := 'UPDATE GUESTHOUSES... {abbreviated}
adoQ.Active := True;
The error is 'Current provider does not support returning multiple recordsets from a single execution'.
I would have thought these are two separate executions. What am I doing wrong?
Hannes