andpor / react-native-sqlite-storage

Full featured SQLite3 Native Plugin for React Native (Android and iOS)
MIT License
2.74k stars 521 forks source link

Multiline Query #545

Open shiroze opened 1 year ago

shiroze commented 1 year ago

Insert with multiline Query String failed.

Sample Query :

INSERT INTO A (Name, Address, Phone) VALUES ('ABC', 'ABC', '123456');
INSERT INTO B (Name, Identity, Age, Remarks) VALUES ('ABC', 'Card', 25, '');

Code running without error but data not inserted to table B. when I try run the SQL Query on DB Browser SQLite it's work fine without error.