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

#1664 Adding documentation for DBPoolClear #1677

Merged
merged 9 commits into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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