Skip to content

Commit 1489655

Browse files
Add limitation note
1 parent 5f3380a commit 1489655

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/capacitor/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ const db = new PowerSyncDatabase({
8282

8383
- Encryption for native mobile platforms is not yet supported.
8484
- `PowerSyncDatabase.executeRaw` does not support results where multiple columns would have the same name in SQLite
85-
- `PowerSyncDatabase.execute` has limited support on Android. The SQLCipher Android driver exposes queries and executions as separate APIs, so there is no single method that handles both. While `PowerSyncDatabase.execute` accepts both, on Android we treat a statement as a query only when the SQL starts with `select` (case-insensitive).
85+
- `PowerSyncDatabase.execute` has limited support on Android. The SQLCipher Android driver exposes queries and executions as separate APIs, so there is no single method that handles both. While `PowerSyncDatabase.execute` accepts both, on Android we treat a statement as a query only when the SQL starts with `select` (case-insensitive). Queries such as `INSERT into customers (id, name) VALUES (uuid(), 'name') RETURNING *` do not work on Android.
8686
- Multiple tab support is not available for native Android and iOS targets. If you're not opening a second webview in your native app using something like `@jackobo/capacitor-webview`, you are unaffected by this.
8787

8888
## Examples

0 commit comments

Comments
 (0)