diff options
Diffstat (limited to 'Source/TablesList.m')
-rw-r--r-- | Source/TablesList.m | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/Source/TablesList.m b/Source/TablesList.m index ac0be0d8..10be699a 100644 --- a/Source/TablesList.m +++ b/Source/TablesList.m @@ -30,8 +30,6 @@ #import "SPTableData.h" #import "TableDump.h" #import "ImageAndTextCell.h" -#import "CMMCPConnection.h" -#import "CMMCPResult.h" #import "SPStringAdditions.h" #import "SPArrayAdditions.h" #import "RegexKitLite.h" @@ -46,7 +44,7 @@ */ - (IBAction)updateTables:(id)sender { - CMMCPResult *theResult; + MCPResult *theResult; NSArray *resultRow; int i; BOOL containsViews = NO; @@ -120,7 +118,7 @@ [tables addObject:NSArrayObjectAtIndex(resultRow, 3)]; if( [NSArrayObjectAtIndex(resultRow, 4) isEqualToString:@"PROCEDURE"] ) { [tableTypes addObject:[NSNumber numberWithInt:SP_TABLETYPE_PROC]]; - } else { + } else { [tableTypes addObject:[NSNumber numberWithInt:SP_TABLETYPE_FUNC]]; } } @@ -401,7 +399,7 @@ */ - (IBAction)copyTable:(id)sender { - CMMCPResult *queryResult; + MCPResult *queryResult; int code; NSString *tableType; int tblType; @@ -493,7 +491,7 @@ else if(tblType == SP_TABLETYPE_FUNC || tblType == SP_TABLETYPE_PROC) { // get the create syntax - CMMCPResult *theResult; + MCPResult *theResult; if([self tableType] == SP_TABLETYPE_PROC) theResult = [mySQLConnection queryString:[NSString stringWithFormat:@"SHOW CREATE PROCEDURE %@", [[tables objectAtIndex:[tablesListView selectedRow]] backtickQuotedString]]]; else if([self tableType] == SP_TABLETYPE_FUNC) @@ -631,7 +629,7 @@ } else { // procedures and functions can only be renamed if one creates the new one and delete the old one // get the create syntax - CMMCPResult *theResult; + MCPResult *theResult; if([self tableType] == SP_TABLETYPE_PROC) theResult = [mySQLConnection queryString:[NSString stringWithFormat:@"SHOW CREATE PROCEDURE %@", [[self tableName] backtickQuotedString]]]; else if([self tableType] == SP_TABLETYPE_FUNC) @@ -833,7 +831,7 @@ /** * Sets the connection (received from TableDocument) and makes things that have to be done only once */ -- (void)setConnection:(CMMCPConnection *)theConnection +- (void)setConnection:(MCPConnection *)theConnection { mySQLConnection = theConnection; [self updateTables:self]; @@ -1135,7 +1133,7 @@ tableType = @"FUNCTION"; break; } - CMMCPResult *theResult; + MCPResult *theResult; if([self tableType] == SP_TABLETYPE_PROC) theResult = [mySQLConnection queryString:[NSString stringWithFormat:@"SHOW CREATE PROCEDURE %@", [[tables objectAtIndex:rowIndex] backtickQuotedString]]]; else if([self tableType] == SP_TABLETYPE_FUNC) |