Get list of Data Souces on weblogic
In case you need to give the user option to select a data source before executing a query below might be helpful
It will return a list of select items that contains the data sources under jdbc/
List list = new ArrayList();
try {
InitialContext initialContext = new InitialContext();
if (initialContext != null) {
NamingEnumeration ne = initialContext.list("jdbc");
while (ne.hasMore()) {
NameClassPair nc = (NameClassPair)ne.next();
list.add(new SelectItem("jdbc/" + nc.getName()));
}
}
}
Comments