-
Notifications
You must be signed in to change notification settings - Fork 344
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1678 from cybersonic/1521_isinthread
#1521 isinthread
- Loading branch information
Showing
4 changed files
with
62 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
|
||
"name": "dbpoolclear", | ||
"engines": { | ||
"lucee": { | ||
"notes": "", | ||
"minimum_version": "", | ||
"docs": "https://docs.lucee.org/reference/functions/dbpoolclear.html" | ||
} | ||
}, | ||
"type": "function", | ||
"syntax": "dbPoolClear([, string])", | ||
"returns": "boolean", | ||
"description": "clears all existing datasource connection", | ||
"examples": [ | ||
{ | ||
"title": "dbPoolClear Example", | ||
"description":"Clear all existing datasource connections", | ||
"code":" dbPoolClear();" | ||
}, | ||
{ | ||
"title": "dbPoolClear Example", | ||
"description":"Clear a named datasource connection", | ||
"code":" dbPoolClear(mydatasource);" | ||
} | ||
], | ||
"params": [ | ||
{ | ||
"default": "", | ||
"required": false, | ||
"values": [], | ||
"name": "datasource", | ||
"type": "string", | ||
"description": "specific datasource to clear, if not set all datasources get removed." | ||
} | ||
] | ||
} |
Oops, something went wrong.