An open API service indexing awesome lists of open source software.

https://github.com/michaelborn/qshim

QueryExecute shim to work around Lucee bugs
https://github.com/michaelborn/qshim

Last synced: 4 months ago
JSON representation

QueryExecute shim to work around Lucee bugs

Awesome Lists containing this project

README

          

# QShim

A queryExecute shim to work around LDEV-1564 and LDEV-3659. Use wisely.

## Usage

Inject shim:

```js
var shim = getInstance( "shim@qshim" );
```

call it:

```js
var result = shim._queryExecute(
"
SELECT id, name FROM students
WHERE subject=:subject
",
{
subject : "History"
}
);
```