Skip to content

Commit

Permalink
Issue #75: CHECK_CONSTRAINTS is there on MSSQL, but does not work due…
Browse files Browse the repository at this point in the history
… to missing TABLE_NAME column: https://www.heidisql.com/forum.php?t=37462
  • Loading branch information
ansgarbecker committed Jan 14, 2021
1 parent 958d62c commit 6b60052
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/dbconnection.pas
Expand Up @@ -2921,8 +2921,8 @@ procedure TAdoDBConnection.DoAfterConnect;
end;
end;
// List of known IS tables
FInformationSchemaObjects.CommaText := 'CHECK_CONSTRAINTS,'+
'COLUMN_DOMAIN_USAGE,'+
// CHECK_CONSTRAINTS is there but does not work due to missing TABLE_NAME column: https://www.heidisql.com/forum.php?t=37462
FInformationSchemaObjects.CommaText := 'COLUMN_DOMAIN_USAGE,'+
'COLUMN_PRIVILEGES,'+
'COLUMNS,'+
'CONSTRAINT_COLUMN_USAGE,'+
Expand Down

0 comments on commit 6b60052

Please sign in to comment.