// @attribute <server.list_sql_connections>
// @returns dList
// @description
// Returns a list of all SQL connections opened by <@link command sql>.
// -->
if (attribute.startsWith("list_sql_connections")) {
dList list = new dList();
for (Map.Entry<String, Connection> entry: SQLCommand.connections.entrySet()) {
try {
if (!entry.getValue().isClosed()) {
list.add(entry.getKey());