I have installed new Tokyo Delphi. I believe there is a bug with the Tokyo IDE. Code completion is not working properly. What you can try is TQuery component. Maybe because it is depreciated but it should work. Also code completion sometimes only works with Uppercase chars after dot.
q := TQuery.Create(nil);
try
q.SQL.Text := '...';
q.FieldByName()
finally
q.Free;
end;
When I write this line q.FieldByName after dot "." I type "F", I see codes in scroll but if I type "i" after "F", the code completion becomes empty and all is lost.
