Skip to content

Commit

Permalink
foundeo#1664 adding documentation for dbpoolclear
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Drew committed Oct 21, 2024
1 parent 0f420ef commit 804fe9a
Showing 1 changed file with 37 additions and 0 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."
}
],
}

0 comments on commit 804fe9a

Please sign in to comment.