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
- Host: GitHub
- URL: https://github.com/michaelborn/qshim
- Owner: michaelborn
- License: mit
- Created: 2021-08-12T15:03:15.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-08-12T15:04:14.000Z (almost 5 years ago)
- Last Synced: 2025-03-02T23:30:25.415Z (over 1 year ago)
- Language: ColdFusion
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
}
);
```