In Delphi where is TSQLQualifiedNamesList defined.
I am trying to replicate the example on loading metadata for all Databases on a server http://www.activedbsoft.com/helpdesk/index.php?pg=kb.page&id=7 but can't find a unit to include TSQLQualifiedNamesList;
Sorry for this problem. There's a little difference between the .NET and VCL code. Please find the right code sample below.
procedure TForm1.SpeedButton4Click(Sender: TObject); var qualifiedNamesList: TSQLQualifiedNamesList; i: integer; begin qualifiedNamesList := TSQLQualifiedNamesList.Create(queryBuilder.SQLContext); try queryBuilder.GetDatabasesList(qualifiedNamesList); for i:=0 to qualifiedNamesList.Count - 1 do begin queryBuilder.LoadMetadata(qualifiedNamesList[i]); end; finally qualifiedNamesList.Free; end; end;