Código:
me esta generando un error el xml al momento de cargarlo quisiera saber de que manera puedo agregar esos datos que estoy captando del rst al xml ? ayudenme xfavor <script type="text/javascript"> <% String driver = "org.postgresql.Driver"; String connectString = "jdbc:postgresql://localhost/mibasededatos"; String user = "postgres"; String password = "postgres"; Class.forName(driver).newInstance(); Connection conn = DriverManager.getConnection(connectString, user,password); ResultSet rst = conn.createStatement().executeQuery("select id, fecha from humedad"); %> var myStr = "<?xml version='1.0' encoding='utf-8'?> "+ "<root>"+ "<rows> "+ "<row id="+ <% rst.getInt("id"); %> +" > "+ " <cell>"+ <% rst.getInt("id"); %> +" </cell> de la célula "+ " <cell> "+ <% rst.getString("fecha"); %> +" </cell> de la célula "+ "</row> "+ "</rows> "+ "</root> ";