An unbounded-length Unicode string type. See :class:`.Unicode` for details on the unicode behavior of this object. Like :class:`.Unicode`, usage the :class:`.UnicodeText` type implies a unicode-capable type being used on the backend, such as ``NCLOB``, ``NTEXT``.
| 348 | |
| 349 | |
| 350 | class UnicodeText(Text): |
| 351 | """An unbounded-length Unicode string type. |
| 352 | |
| 353 | See :class:`.Unicode` for details on the unicode |
| 354 | behavior of this object. |
| 355 | |
| 356 | Like :class:`.Unicode`, usage the :class:`.UnicodeText` type implies a |
| 357 | unicode-capable type being used on the backend, such as |
| 358 | ``NCLOB``, ``NTEXT``. |
| 359 | |
| 360 | """ |
| 361 | |
| 362 | __visit_name__ = "unicode_text" |
| 363 | |
| 364 | |
| 365 | class Integer(HasExpressionLookup, TypeEngine[int]): |
no outgoing calls