Sorry, not simple for a new Delphi'er
In the code below, how do I move the results to a fdmemtable?
• Do I have to loop-add each record or can the memtable just be set equal to the recordset using a function/procedure?
• Or, can the results be sent directly to a fdmemtable?
My problem with this code is the cmd.execute is returning a recordset but that is not the type the memTable is looking for. Need assist.
procedure TForm1.btnADReadClick(Sender: TObject);
var // SQLad,DOMAINad,USERad:string;
t:_recordset;
begin
DOMAINad:= QuotedStr('LDAP://')+DOMAINad;
//listbox1.Clear;
try
datamodule1.connADOldap.ConnectionString := 'Provider=ADsDSOObject';
cmd.Connection:=datamodule1.connADOldap;
datamodule1.connADOldap.Connected:=true;
SQLad:='select cn,distinguishedname from '+DOMAINad+' where objectClass='
//+Quotedstr('*');
+Quotedstr('user');
//
cmd.CommandText:=SQLad;
cmd.Properties.Item['Page Size'].Value:=40;
//t:=cmd.Execute;
datamodule1.FDMemTableADResults:=cmd.Execute;
except
on exception do showmessage('Error');
end;
end;
This is simpler if you use a TADODataSet instead