-
Notifications
You must be signed in to change notification settings - Fork 0
Removing Tables
cmancushman edited this page Oct 26, 2017
·
3 revisions
Declaration
+(void)removeStackBaseTableWithName:(NSString *)name fromMySQLServerWithCompletionBlock:(StackBaseEditCompletion) compBlock;Example
[StackBaseClient removeStackBaseTableWithName:@"TestTable" completionBlock:^(BOOL success, NSString *responseMessage) {
if(success){
NSLog(@"Deletion Successful.");
}else{
NSLog(@"Deletion Unsuccessful: %@", responseMessage);
}
}];Intro
Managing Tables
Managing Columns
Managing Rows
Conditions
Going Forward