diff --git a/data/en/dbpoolclear.json b/data/en/dbpoolclear.json new file mode 100644 index 000000000..dfca5af2f --- /dev/null +++ b/data/en/dbpoolclear.json @@ -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." + } + ], +} \ No newline at end of file