Changes between Initial Version and Version 1 of Ticket #31882


Ignore:
Timestamp:
Aug 13, 2020, 11:11:43 PM (4 years ago)
Author:
Mariusz Felisiak
Comment:

Should the docs for JSONField using SQLite be updated? Is there a commonly used workaround to this problem in the Django community?

JSON1Extension is a Wiki page, so you can add a warning or describe a workaround on your own.

Closing per TicketClosingReasons/UseSupportChannels.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #31882

    • Property Cc Sage Abdullah added
    • Property Resolutioninvalid
    • Property Status newclosed
  • Ticket #31882 – Description

    initial v1  
    33I followed the instructions for how to enable SQLite's `JSON1` extension but was unable to set `DYLD_LIBRARY_PATH` as an environmental variable.
    44
    5 ```sh
     5{{{
    66# attempt to export
    77$ export DYLD_FALLBACK_LIBRARY_PATH=path/to/dir
    88# no stdout
    99$ env | rg DYLD
    10 ```
     10}}}
    1111
    12 Based on Stack Overflow, inability to set this env var is the result of a [macOS security policy](https://stackoverflow.com/search?q=DYLD_LIBRARY_PATH+macos).
     12Based on Stack Overflow, inability to set this env var is the result of a [https://stackoverflow.com/search?q=DYLD_LIBRARY_PATH+macos macOS security policy].
    1313
    14 Should the [docs for JSONField using SQLite](https://code.djangoproject.com/wiki/JSON1Extension) be updated? Is there a commonly used workaround to this problem in the Django community?
     14Should the [https://code.djangoproject.com/wiki/JSON1Extension docs for JSONField using SQLite] be updated? Is there a commonly used workaround to this problem in the Django community?
Back to Top