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