Ver Mensaje Individual
  #4  
Antiguo 25-04-2010
bothy bothy is offline
Miembro
 
Registrado: ene 2010
Posts: 144
Reputación: 15
bothy Va por buen camino
Hola colega muchas gracias por su tiempo y por ayudarme..

me podrian ayudar ya que hago el codigo como dijo mcs
El pseudo-codigo para borrar borrar un registro es este:
- Abrir la base de datos
- Abrir la tabla
- Buscar el registro a borrar
- Borrar el registro
- Cerrar la tabla
- Cerrar la base de datos
y me tira el mismo error
Código Delphi [-]
 db.Active :=true;
  db.Open ;

  db.FieldByName('admin').AsString :=edit3.Text;
  db.FieldByName('pass').AsString :=edit4.Text  ;
  db.Delete ;
  db.Cancel;
  db.Active :=true;
Responder Con Cita