
08/02/2008, 08:21
|
 | Colaborador | | Fecha de Ingreso: enero-2002 Ubicación: Centro de la república
Mensajes: 8.849
Antigüedad: 23 años, 3 meses Puntos: 146 | |
Re: Problema con Campo Memo en ASP Cita: Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
[Microsoft][ODBC Microsoft Access Driver] Record is deleted.
Sounds like you are relying on a dynamic recordset of some kind. There really is no reason to do this in ASP; open a static, forward-only recordset for use in ASP. Issue DELETE / UPDATE statements rather than trying to update the recordset directly, and use INSERT rather than AddNew. And stop using the ODBC driver; use OLE-DB instead (see Article #2126 for some sample connection strings). http://tutorials.aspfaq.com/8000xxxx...05-errors.html |