
29/11/2003, 16:41
|
 | | | Fecha de Ingreso: noviembre-2002 Ubicación: Madrid
Mensajes: 854
Antigüedad: 22 años, 5 meses Puntos: 0 | |
Pues con un bucle ...
strSQL = "SELECT CAMPOS FROM TABLA WHERE SI_NO=1"
set mr = myconn.execute(strsql)
do while not mr.eof or mr.bof
strSQL2 = "UPDATE CAMPOS ....."
MYCONN.EXECUTE(strsql2)
loop
mr.close |