# mariadb\_cancel

## Syntax

```c
int mariadb_cancel(MYSQL * mysql);
```

`mysql` - mysql handle, which was previously allocated by [mysql\_init()](https://mariadb.com/docs/connectors/mariadb-connector-c/api-functions/mysql_init) or [mysql\_real\_connect()](https://mariadb.com/docs/connectors/mariadb-connector-c/api-functions/mysql_real_connect).

## Description

Immediately aborts a connection by making all subsequent read/write operations fail.*mariadb\_cancel()* does not invalidate memory used for mysql structure, nor close any communication channels. To free the memory, [mysql\_close()](https://mariadb.com/docs/connectors/mariadb-connector-c/api-functions/mysql_close) must be called.*mariadb\_cancel()* is useful to break long queries in situations where sending KILL is not possible.

*mariadb\_cancel()* was added in Connector/C 3.0

{% @marketo/form formId="4316" %}
