SQLite compatibility implementation for the CONCAT() SQL function.
public static function sqlFunctionConcat() { $args = func_get_args(); return implode('', $args); }