i'm having an issue with a session attriblute in a jsp page, i would like to pass it into a string so that i can use it to query a database eg,
String group=session.getAttribute("group");
i know it has been correctly populated because if i put the below in a page it displays the correct value
<%=
session.getAttribute("group")
%>
the error i am getting is
Type mismatch: cannot convert from Object to String
is there a different way to put a session variable into a String? or am i doing it completely wrong. any assistance much appreciated.