File: //opt/alt/python27/lib64/python2.7/site-packages/sqlalchemy/dialects/sqlite/json.pyc
�
��4]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__( ( ( sR /opt/alt/python27/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( ( sR /opt/alt/python27/lib64/python2.7/site-packages/sqlalchemy/dialects/sqlite/json.pyt
_format_value"