static void AppendDropTable(string tableName) { QueryTextBuilder.AppendFormat( "if OBJECT_ID('{0}','U') is not null drop table [{0}]", tableName); QueryTextBuilder.AppendLine(); }
static void AppendDeleteTable(string tableName) { QueryTextBuilder.AppendFormat("delete [{0}]", tableName); QueryTextBuilder.AppendLine(); }