Changes between Initial Version and Version 1 of Ticket #35842, comment 12


Ignore:
Timestamp:
Dec 4, 2024, 10:31:18 PM (2 weeks ago)
Author:
Simon Charette

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #35842, comment 12

    initial v1  
    1818}}}
    1919
     20But 3.47.1 seems to have fixed it?
     21
     22{{{
     23SQLite version 3.47.1 2024-11-25 12:07:48
     24Enter ".help" for usage hints.
     25Connected to a transient in-memory database.
     26Use ".open FILENAME" to reopen on a persistent database.
     27sqlite> select json_extract(json('{"foo\".bar": "ba\"z", "x": "y"}'), '$."foo\".bar"');
     28ba"z
     29}}}
     30
    2031To make sure that the built library is used you access `sqlite3.sqlite_version` in the Python terminal from the environment you used to run your tests
    2132
Back to Top