Way to save record only if it not exists in Table?

I’d like to know is der a way to save records only if it’s not available in table. If the record exists then it should not insert in Table. How can I achieve this in Backendless Android?

Hello Ketan,

You can use Backendless.Data.save(). Save method checks whether object with set objectId exists in table and if it does updates it, otherwise creates new one.

Artur

Thanks @Artur Dzidzoiev it helped me.