We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 434f789 commit c983906Copy full SHA for c983906
src/sqlite.common.ts
@@ -54,10 +54,16 @@ export function paramToString(p: SqliteParam) {
54
if (p instanceof java.io.ByteArrayOutputStream) {
55
return p.toByteArray();
56
}
57
+ if (p instanceof java.lang.Object) {
58
+ return p;
59
+ }
60
} else {
61
if (p instanceof NSData) {
62
return p;
63
64
+ if (p instanceof NSObject) {
65
66
67
68
if (p.hasOwnProperty('length') && !Array.isArray(p)) {
69
0 commit comments