On 1/11/06, PJ Velzeboer <[EMAIL PROTECTED]> wrote:
> I have an interesting problem. I have written a jsp page which queries data
> from a UniVerse database using UniObjects for java (asjava.uniobjects.*).
> Whenever I read a field from a file the contents of the UniString are in the
> following format field1?field2?field3?filed4 etc. Effectively this means that
> using UniDynArray.extract(field, value, subvalue); doesn't work. Does anyone
> have any ideas?

Yes.  Move the code to a Servlet, populate a collection of objects,
and use JSTL to display the values:
<table>
   <c:forEach items="${transactions} var="txn" >
     <tr>
        <td>${txn.code}</td><td>${txn.branch}</td><td>${txn.operator}</td>
     </tr>
   </c:forEach>
</table>

Oh.  You meant about the question marks. ;)  Check the LANG settings
on both the client and server... LANG=C is known to work.

--
Wendy
-------
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/

Reply via email to