On 10/3/06, mmfarhan <[EMAIL PROTECTED]> wrote:

Hi,
I am trying to display text which is stored in mysql text field. But it
displays nothing. and when i try this code:
<c:out value="${rowSrearch.pDetails}" />
<snip/>

Could simply be EL-2 [1]. Try changing property name to 'pdetails' (or
some such).

-Rahul

[1] https://issues.apache.org/jira/browse/EL-2


<c:set var="text" value="${rowSrearch.pDetails}"/>
<%
        String text = (String)pageContext.getAttribute("text");
        out.print(text);
%>

it gives me null.

What is the best way to reterive date from MySQL text field.

I am using:
Apache2
Tomcat 5.5.17
MySQK 5.0.22
mysql-connector-java-5.0.3

Thanks

Regards,
Farhan

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to