Eduardo Jauch
2008-03-16 11:48:09 UTC
Hi,
How can I find if a specific field in a TSQLQuery is an Index field?
I'm using something like this:
with FSQLQuery do
begin
for i := 0 to FieldList.Count - 1 do
begin
info := TMyDBFieldInfo.Create;
info.FieldName := FieldList[i].FieldName;
info.FieldKey := ????
FFieldList.Add(info);
end;
end;
Where to find the definition if the field is an Index field on the
SQLServer table?
Thanks!
How can I find if a specific field in a TSQLQuery is an Index field?
I'm using something like this:
with FSQLQuery do
begin
for i := 0 to FieldList.Count - 1 do
begin
info := TMyDBFieldInfo.Create;
info.FieldName := FieldList[i].FieldName;
info.FieldKey := ????
FFieldList.Add(info);
end;
end;
Where to find the definition if the field is an Index field on the
SQLServer table?
Thanks!