|
Server : Apache System : Linux cvar2.toservers.com 3.10.0-962.3.2.lve1.5.73.el7.x86_64 #1 SMP Wed Aug 24 21:31:23 UTC 2022 x86_64 User : njnconst ( 1116) PHP Version : 8.4.18 Disable Function : NONE Directory : /usr/lib64/python2.7/site-packages/sqlalchemy/dialects/sqlite/ |
Upload File : |
�
���\c @ s� d d l m Z d e j f d � � YZ d e f d � � YZ d e e j j f d � � YZ d e e j j f d � � YZ d
S( i ( t typest JSONc B s e Z d Z RS( s� SQLite JSON type.
SQLite supports JSON as of version 3.9 through its JSON1_ extension. Note
that JSON1_ is a
`loadable extension <https://www.sqlite.org/loadext.html>`_ and as such
may not be available, or may require run-time loading.
The :class:`.sqlite.JSON` type supports persistence of JSON values
as well as the core index operations provided by :class:`.types.JSON`
datatype, by adapting the operations to render the ``JSON_EXTRACT``
function wrapped in the ``JSON_QUOTE`` function at the database level.
Extracted values are quoted in order to ensure that the results are
always JSON string values.
.. versionadded:: 1.3
.. seealso::
JSON1_
.. _JSON1: https://www.sqlite.org/json1.html
( t __name__t
__module__t __doc__( ( ( sE /usr/lib64/python2.7/site-packages/sqlalchemy/dialects/sqlite/json.pyR s t _FormatTypeMixinc B s# e Z d � Z d � Z d � Z RS( c C s
t � � d S( N( t NotImplementedError( t selft value( ( sE /usr/lib64/python2.7/site-packages/sqlalchemy/dialects/sqlite/json.pyt
_format_value"