can we update a whole table at once something like :
since we update an object like this -
let contact = Contact()
let dataStore = Backendless.sharedInstance().data.of(Contact.ofClass()) // update object asynchronously contact.title = “Superman” contact.phone = “212-555-5555” dataStore.save( contact, response: { (result: AnyObject!) -> Void in let updatedContact = result as! Contact print(“Contact has been updated: (updatedContact.objectId)”) }, error: { (fault: Fault!) -> Void in print(“Server reported an error (2): (fault)”) })
///updating whole table
dataStore.save( contactTable, response: { (result: AnyObject!) -> Void in }, error: { (fault: Fault!) -> Void in print(“Server reported an error (2): (fault)”) })
//conactTable = [Contact()]