Skip to content

Commit

Permalink
Merge pull request #1678 from cybersonic/1521_isinthread
Browse files Browse the repository at this point in the history
#1521 isinthread
  • Loading branch information
pfreitag authored Oct 21, 2024
2 parents 340c9c7 + 3ebb6df commit b8a604d
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 2 deletions.
37 changes: 37 additions & 0 deletions data/en/dbpoolclear.json
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."
}
]
}
Loading

0 comments on commit b8a604d

Please sign in to comment.