Android Studio Room Database Inspector Run Query

Опубликовано: 01 Ноябрь 2024
на канале: Ferer Atlus
843
5

In this video will help you how to use the Database Inspector. And how to Run Query for Inserting, Update, Select, Delete.

➤ Sample Queries:
INSERT INTO custom_table (Name) VALUES ("A");
INSERT INTO custom_table (Name) VALUES ("B");
INSERT INTO custom_table (Name) VALUES ("C");
INSERT INTO custom_table (Name) VALUES ("XXX");
UPDATE custom_table SET Name = "C" WHERE Name = "XXX";
SELECT * FROM custom_table ORDER BY Id ASC;
DELETE FROM custom_table;


➤ Source Code:
https://github.com/benedictcontawe/Je...