# PreserveSingleQuotes

Prevents from automatically escaping single quotation mark characters that are contained in a variable.

It is not neccesary to use this function around listQualify() when the qualifier is a single quote, or around quotedValueList() as those automatically preserve and escape single quotes as needed when used inside a query component.

## Method Signature

```
PreserveSingleQuotes(variable=[String])
```

### Arguments

| Argument   | Type     | Required | Description                                                    | Default |
| ---------- | -------- | -------- | -------------------------------------------------------------- | ------- |
| `variable` | `String` | `true`   | The expression that needs to have its single quotes preserved. |         |

## Examples

## Related

* [IsInTransaction](https://boxlang.ortusbooks.com/boxlang-language/reference/built-in-functions/jdbc/isintransaction)
* [IsWithinTransaction](https://boxlang.ortusbooks.com/boxlang-language/reference/built-in-functions/jdbc/iswithintransaction)
* [QueryExecute](https://boxlang.ortusbooks.com/boxlang-language/reference/built-in-functions/jdbc/queryexecute)
* [TransactionCommit](https://boxlang.ortusbooks.com/boxlang-language/reference/built-in-functions/jdbc/transactioncommit)
* [TransactionRollback](https://boxlang.ortusbooks.com/boxlang-language/reference/built-in-functions/jdbc/transactionrollback)
* [TransactionSetSavepoint](https://boxlang.ortusbooks.com/boxlang-language/reference/built-in-functions/jdbc/transactionsetsavepoint)
