numeric datatypes are represented as character string literals in the SQLX mapping. For example:
select 1, 2.345, 67e8 for xml ----------------------------------------------------- <resultset xmlns:xsi="http://www.w3.org/2001 /XMLSchema-instance"> <row> <C1>1</C1> <C2>2.345</C2> <C3>6.7E9</C3> </row> </resultset>