Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#1521 isinthread #1678

Merged
merged 11 commits into from
Oct 21, 2024
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