Ejemplo n.º 1
0
 internal void FillDeleteScriptCollection(SQLScriptCollection collection)
 {
     if (collection == null)
     {
         throw new ArgumentNullException("collection");
     }
     collection.Clear();
     FillDeleteScript(collection);
 }
Ejemplo n.º 2
0
 internal void FillFreshScriptCollection(SQLScriptCollection collection)
 {
     if (collection == null)
     {
         throw new ArgumentNullException("collection");
     }
     collection.Clear();
     FillSelectScript(null, 0, collection);
 }