Expo Sqlite Rollback Transaction Not Working Properly

Hi all,
I’m using expo-sqlite for implementing a local database on a android app.
How to perform sqlite rollback transaction with expo library or is there any other component?
I try to do transaction with this code :
const Deletequery = DELETE FROM Talukalist;
const InsertQuery = INSERT into Talukalist(State_Code, District_Code, Taluka_Code, Taluka_Name) VALUES ${string};
const SeleteQuery = SELECT * FROM Talukalist;
db.transaction(
function (tx) {
tx.executeSql(
Deletequery,
,
(tx, results) => {
console.log(“TalukaDelete query result callback”);
},
(tx1, error) => {
console.log(“TalukaDelete query Error callback”, error.message);
return true;
}
);
tx.executeSql(
InsertQuery,
,
(tx, results) => {
console.log(“TalukaInsert query result callback”);
},
(tx1, error) => {
console.log(“TalukaInsert query Error callback”, error.message);
return true;
}
);
},
(error) => {
console.log("DB Transaction Error Message :- ", error.message);
return true;
},
() => {
//console.log(“Success”);
db.transaction(function (tx) {
tx.executeSql(SeleteQuery, , (tx, results) => {
console.log(“DB Transaction Select query Success callback”);
});
});
}
);

Before any error i have 6 records in my table and it works properly with success callback.
Here is the output of first trancation :

TalukaDelete query result callback
TalukaInsert query result callback
DB Transaction Success callback result Array [
Object {
“COUNT(*)”: 6,
},
]

After success of one transaction i have tried to put error in my query and check it works proper or not.
It gives me such kind of output :

TalukaDelete query result callback
TalukaInsert query Error callback near “,”: syntax error (code 1 SQLITE_ERROR): , while compiling: INSERT into Taluka,list(State_Code, District_Code, Taluka_Code, Taluka_Name) VALUES (‘6’,‘63’,‘393’,‘Adampur’),(‘6’,‘65’,‘6409’,‘Alewa’),(‘6’,‘58’,‘359’,‘Ambala’),(‘6’,‘58’,‘6406’,‘Ambala Cantonment’),(‘6’,‘67’,‘373’,‘Assandh’),(‘6’,‘69’,‘6457’,‘Ateli’)
DB Transaction Delete callback result near “,”: syntax error (code 1 SQLITE_ERROR): , while compiling: INSERT into Taluka,list(State_Code, District_Code, Taluka_Code, Taluka_Name) VALUES (‘6’,‘63’,‘393’,‘Adampur’),(‘6’,‘65’,‘6409’,‘Alewa’),(‘6’,‘58’,‘359’,‘Ambala’),(‘6’,‘58’,‘6406’,‘Ambala Cantonment’),(‘6’,‘67’,‘373’,‘Assandh’),(‘6’,‘69’,‘6457’,‘Ateli’)
DB Transaction Error callback result Array [
Object {
“COUNT(*)”: 0,
},
]

So in my second trancation gives me error, even though my first transaction is work successfully and remove all the records and rollback transaction went failed. Please help me in this and share your answer with me.