public string DropTable(string tableName) { if (tableName.Length > 35) // 30 + 4 * '"' + '.' { messages.WriteLine("Warning: TableName " + tableName + " is too long."); } return("DROP TABLE " + tableName + ";"); }