@anfenn/dync 1.0.22 → 1.0.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -39,7 +39,7 @@ And see how Dync compares to the alternatives [below](#hasnt-this-already-been-d
|
|
|
39
39
|
if (ctx instanceof DexieQueryContext) {
|
|
40
40
|
return await ctx.table('items').where('value').startsWithIgnoreCase('dexie').toArray();
|
|
41
41
|
} else if (ctx instanceof SqliteQueryContext) {
|
|
42
|
-
return await ctx.queryRows('SELECT * FROM items WHERE value LIKE ?
|
|
42
|
+
return await ctx.queryRows('SELECT * FROM items WHERE value LIKE ?', ['sqlite%']);
|
|
43
43
|
}
|
|
44
44
|
});
|
|
45
45
|
```
|
package/package.json
CHANGED