
14/01/2007, 04:46
|
|
Error Al Borrar Varios Registro ESTIMADOS AMIGOS, TENGO UN ERROR PARA BORRAR VARIOS REGISTRO EN ASP EL CODIGO ES EL SIGUIENTE.
Set RS = Server.CreateObject("ADODB.Recordset")
Set Producto = Server.CreateObject("ADODB.Recordset")
Set Subasta = Server.CreateObject("ADODB.Recordset")
'set ADDCART = server.CreateObject("ADODB.Recordset")
SQL = "SELECT * FROM Categoria"
SQL1 = "SELECT * FROM Articulos"
SQL2 = "SELECT * FROM Articulos WHERE Articulos.Tipo=True ORDER BY Articulos.Fecha_ALTA"
RS.open SQL,conn
producto.open sql1,conn
Subasta.open sql2,conn
set del=conn1.Execute("delete a.* From a where a.tipo=true") ' ERROR EN ESTA LINEA
fecha_actual = now()
ERROR EN INTERNET EXPLORE:
Tipo de error:
Microsoft JET Database Engine (0x80004005)
No se pudo eliminar nada en las tablas especificadas.
/web/comprasevilla/index.asp, línea 15
LO UNICO QUE ME DOY CUENTA QUE LAS CARPETA QUE TENGO EN MI UNIDAD ESTAN EN SOLO LECTURA Y NO PUEDO CAMBIARLO, ESTOY SEGURO QUE ES UN ERROR DE SEGURIDAD DE USUARIO, PERO NO SE COMO PUEDO CAMBIARLO YA HE ELLO DE TODO, CAMBIAR EL USUARIO AL IIS NI TAMPOCO ME VA. |