Beispiel #1
0
 internal void RemoveCatalogConstraintCheck(Schema.CatalogConstraint constraint)
 {
     foreach (ServerSession session in Sessions)
     {
         session.RemoveCatalogConstraintCheck(constraint);
     }
 }
Beispiel #2
0
 internal void RemoveCatalogConstraintCheck(Schema.CatalogConstraint constraint)
 {
     if (_processes != null)
     {
         foreach (ServerProcess process in _processes)
         {
             process.RemoveCatalogConstraintCheck(constraint);
         }
     }
 }