
11/08/2003, 20:35
|
 | | | Fecha de Ingreso: mayo-2002 Ubicación: Lima, Peru
Mensajes: 4.619
Antigüedad: 22 años, 10 meses Puntos: 7 | |
Deberias usar un Recordset mejor.
Dim sSql as string
Dim Rs as Recordset ' o as ADODB.Recordset, mejor aun
sSql="Select x From Table where Reg=" & variable
Set Rs=Conn.execute(sSql)
Do while not Rs.eof
print rs(0) ' o rs("x")
rs.movenext
loop
__________________ No tengo firma ahora... :( |