I use sqliteodbc from http://www.ch-werner.de/sqliteodbc/ and this code in ms word
str_cnxn = "Driver={SQLite3 ODBC Driver};Database=" & db_path
Dim Cnxn As New ADODB.Connection
Dim rst As New ADODB.Recordset
Cnxn.Open str_cnxn
rst.Open "Select *,json_extract(pdf_links, '$.root') as root from book where book_id=10", Cnxn, adOpenForwardOnly, adLockReadOnly
Debug.Print rst!book_name, rst!Root
rst.Close
I got this error
no such function:json_extract
Same SQL statement on same DB run successfully on SQLite Db Browser https://sqlitebrowser.org/