aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPTableCopy.m
diff options
context:
space:
mode:
authordrx777 <david.rekowski@gmx.de>2010-04-29 15:54:44 +0000
committerdrx777 <david.rekowski@gmx.de>2010-04-29 15:54:44 +0000
commita980040e8546060e71166c363d2247407af12179 (patch)
tree5c3fda1851dfccca0345dcbf449603550d532efa /Source/SPTableCopy.m
parent668556252773fab2051a10a2c976d52f123dfb10 (diff)
downloadsequelpro-a980040e8546060e71166c363d2247407af12179.tar.gz
sequelpro-a980040e8546060e71166c363d2247407af12179.tar.bz2
sequelpro-a980040e8546060e71166c363d2247407af12179.zip
removing debug output (NSLog calls)
Diffstat (limited to 'Source/SPTableCopy.m')
-rw-r--r--Source/SPTableCopy.m2
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/SPTableCopy.m b/Source/SPTableCopy.m
index 1e0a4d63..f9bb159a 100644
--- a/Source/SPTableCopy.m
+++ b/Source/SPTableCopy.m
@@ -42,7 +42,6 @@
[sourceDB backtickQuotedString],
[tableName backtickQuotedString]
];
- NSLog(showCreateTableStatment);
MCPResult *theResult = [connection queryString:showCreateTableStatment];
if ([connection queryErrored]) {
@@ -66,7 +65,6 @@
// adding the target DB name and the separator dot after "CREATE TABLE ".
[createTableStatement insertString:@"." atIndex:13];
[createTableStatement insertString:[targetDB backtickQuotedString] atIndex:13];
- NSLog(@"%@", createTableStatement);
/*
// this only works with MySQL >= 4.1
NSString *copyStatement = [NSString stringWithFormat:@"CREATE TABLE %@.%@ LIKE %@.%@",