Hola a todos:
Realizo una consulta SQL de la forma:
String consId="select idForm from formularios where Login='"+controles.getLogin()+"'";
miRes = miStat.executeQuery(consId);
int valores[] =new int[100];
for (int h=0;h<100;h++) valores[h]=200;
int i=0;
while (miRes.next())
{
valores[i]= miRes.getInt(1);
i++;
}
Intento meterlos en un array pq luego quiero sacarlos por pantalla:
<%
int j=0;
while (valores[j]!=200){
%>
<TR>
<TD> <%= valores[j] %> </TD>
</TR>
<%}%>
Pero no funciona sale en todos el mismo valor(el del primero) y me hace reiniciar pq nunca para!!!!
Alguien sabe que debo hacer?
Gracias!!!