Hi,
I'd like to use <esql:get-string column="abc" encoding="UTF-8"/>
but for the encoding we have to catch
java.io.UnsupportedEncodingException
These exception is not catched yet.
Because I have no access to cvs I post the patch as
diff -u esql.xsl.orig esql.xsl
Regards,
Michael
--- esql.xsl.orig Tue Aug 7 16:25:16 2001
+++ esql.xsl Tue Aug 7 16:23:13 2001
@@ -637,6 +637,9 @@
</xsl:choose>
} catch (Exception _esql_exception_<xsl:value-of select="generate-id(.)"/>_2) {}
}
+ catch(java.io.UnsupportedEncodingException e) {
+ throw new RuntimeException(e.toString());
+ }
if (_esql_queries.empty()) {
_esql_query = null;
} else {
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]