Error al 3001 al tratar de eliminar un registro VB6.0
Tengo el siguiente problema cuando voy a tratar de eliminar de visual basic unos registros en sqlserver 2000, me da un error '3001'. "Argumentos incorrectos, fuera del intervalo permitido o en conflicto con otros".
El código es el siguiente:
Strsql = vbNullString
Strsql = Strsql & " delete from tblmatprovalmcost "
Strsql = Strsql & " where cant_total= 0 and cant_reserva= 0 "
Set rst = Nothing
Set rst = New ADODB.Recordset
Set rst = sqlbd.excute(Strsql)
El código es el siguiente:
Strsql = vbNullString
Strsql = Strsql & " delete from tblmatprovalmcost "
Strsql = Strsql & " where cant_total= 0 and cant_reserva= 0 "
Set rst = Nothing
Set rst = New ADODB.Recordset
Set rst = sqlbd.excute(Strsql)
1 Respuesta
Respuesta de carloscharly