Hi to the list,

I have a mysql db and I use SQL tag.
I have a strange problem when a field that has the attribute BINARY

With this snippets:

 <sql:query var="query1" >
    SELECT nick_name FROM user_comunity
 </sql:query>
    <c:forEach var="row" items="${query1.rows}">
     <c:forEach var="column" items="${query1.columnNames}">
      <c:out value="${column}" /> = <c:out value="${row[column]}" />,
     </c:forEach>
     <br>
    </c:forEach>

the output is:

-- > nick_name = [EMAIL PROTECTED],  (BINARY attribute)
or
-- > nick_name = myLogin (no attributes)

I need mantain BINARY attribute.
Does it exist a solution?

Regard Lorenzo Sicilia





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



Reply via email to