Hi,
I am using MSSQL 2000. I use TCRSQLConnection.GetTableNames to return a list of user tables. However, it return 3 extra tables that isn't not created by me:
1. dtproperties
2. sysconstraints
3. syssegments
This is my code:
var S: TStringList;
begin
S := TStringList.Create;
SQLConnection1.GetTableNames(S, False);
S.Free;
end;
Any ideas?