Closed adrirrFOS closed 3 years ago
@adrirrFOS the Json1 extension is loaded so you should not worry about the load. Have you try the query
SELECT DISTINCT users.name FROM users,
json_each(users.phone) WHERE json_each.value LIKE '704-%'';
this should work. See angular-sqlite-app-starter
testjson1extension.page.ts
line 107
thank you
Hi, I need to store some json fields and I would like to make use of json1 extension. I've been unsuccessful so far. Wondering if it really works with this plugin and if it does, can I have some guidance regarding how to load/use it please?
I am following the
angular-sql-app-starter example
and replaced some fields with a json content and the data is stored ok. I would like to be able to select usingjson_each
for example