appwrite/docs/examples/1.8.x/server-kotlin/java/tables/upsert-rows.md

611 B

import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Tables;

Client client = new Client() .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setAdmin("") // .setKey("<YOUR_API_KEY>"); // Your secret API key

Tables tables = new Tables(client);

tables.upsertRows( "<DATABASE_ID>", // databaseId "<TABLE_ID>", // tableId new CoroutineCallback<>((result, error) -> { if (error != null) { error.printStackTrace(); return; }

    System.out.println(result);
})

);