Concate field or constant text. Be care, DB like sqlite3 has no support for `CONCAT`. :samp:`Concat("{FIELD_NAME}", {ANOTHER_FIELD_NAMES or CONSTANT_TEXT}, *args)`
| 69 | |
| 70 | |
| 71 | class Concat(Function): |
| 72 | """ |
| 73 | Concate field or constant text. |
| 74 | Be care, DB like sqlite3 has no support for `CONCAT`. |
| 75 | |
| 76 | :samp:`Concat("{FIELD_NAME}", {ANOTHER_FIELD_NAMES or CONSTANT_TEXT}, *args)` |
| 77 | """ |
| 78 | |
| 79 | database_func = _Concat |
| 80 | |
| 81 | |
| 82 | ############################################################################## |
no outgoing calls
searching dependent graphs…