Ver Mensaje Individual
  #1 (permalink)  
Antiguo 06/05/2010, 16:40
Avatar de HaroldV
HaroldV
 
Fecha de Ingreso: enero-2010
Ubicación: Maracaibo
Mensajes: 100
Antigüedad: 14 años, 10 meses
Puntos: 3
Como Agregar datos a un XML

Amigos este es mi script
Código:
      <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> ";
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