在Android中同步多个查询的SQLITE字符串?

时间:2013-12-11 17:17:06

标签: android sqlite asynchronous

我知道如果您在Android中进行多次查询,则它们是异步的。

但我想知道一个String中的多个查询是否仍然是异步的?

E.g:

"CREATE TABLE bar (num); INSERT INTO bar VALUES (1)"

而不是:

 1st Query: CREATE TABLE bar (num);
 2nd Query: INSERT INTO bar VALUES (1)
 This can cause an error because the table might not be created yet.

0 个答案:

没有答案