A variably sized string type. In SQL, usually corresponds to CLOB or TEXT. In general, TEXT objects do not have a length; while some databases will accept a length argument here, it will be rejected by others.
| 293 | |
| 294 | |
| 295 | class Text(String): |
| 296 | """A variably sized string type. |
| 297 | |
| 298 | In SQL, usually corresponds to CLOB or TEXT. In general, TEXT objects |
| 299 | do not have a length; while some databases will accept a length |
| 300 | argument here, it will be rejected by others. |
| 301 | |
| 302 | """ |
| 303 | |
| 304 | __visit_name__ = "text" |
| 305 | |
| 306 | |
| 307 | class Unicode(String): |
no outgoing calls