Issue #3212: Display schema name also in database tab, to make it consistent with the tree.

This commit is contained in:
Ansgar Becker
2013-06-26 04:19:38 +00:00
parent b77b990714
commit 9495f504c1

View File

@@ -4771,7 +4771,12 @@ begin
Obj := Sender.GetNodeData(Node);
CellText := '';
case Column of
0: CellText := Obj.Name;
0: begin
if Obj.Schema <> '' then
CellText := Obj.Schema + '.' + Obj.Name
else
CellText := Obj.Name;
end;
1: if Obj.Rows > -1 then CellText := FormatNumber(Obj.Rows);
2: if Obj.Size > -1 then CellText := FormatByteNumber(Obj.Size);
3: if Obj.Created <> 0 then CellText := DateTimeToStr(Obj.Created);