Пример #1
0
 static void AppendDropTable(string tableName)
 {
     QueryTextBuilder.AppendFormat(
         "if OBJECT_ID('{0}','U') is not null drop table [{0}]",
         tableName);
     QueryTextBuilder.AppendLine();
 }
Пример #2
0
 static void AppendDeleteTable(string tableName)
 {
     QueryTextBuilder.AppendFormat("delete [{0}]", tableName);
     QueryTextBuilder.AppendLine();
 }