Ver Mensaje Individual
  #4  
Antiguo 21-10-2005
Avatar de Lepe
[Lepe] Lepe is offline
Miembro Premium
 
Registrado: may 2003
Posts: 7.424
Reputación: 29
Lepe Va por buen camino
El Post tambien sobra.

Cita:
Empezado por ayuda de delphi
Inserts a new, populated record to the dataset and posts it.

procedure InsertRecord(const Values: array of const);

Description

Call InsertRecord to create a new, empty record in the dataset, populate it with the field values in Values, and post the values to the database or change log.

A newly inserted record is posted to the database in one of three ways:

For indexed Paradox and dBASE tables, the record is inserted into the dataset in a position based on its index.
For unindexed Paradox tables, the record is inserted into the dataset at the current position.
For unindexed dBASE, FoxPro, and Access tables, the record is inserted into the dataset at the end.
For SQL databases, the physical location of the insert is implementation-specific. For indexed tables, the index is updated with the new record information.

The newly inserted record becomes the active record.
En definitiva, deja solo las lineas de InsertRecord. Si aún así te da el mismo error, puede que le estes pasando un valor de más, es decir, la tabla tiene 4 campos y tu le das 5 para insertar.

saludos
__________________
Si usted entendió mi comentario, contácteme y gustosamente,
se lo volveré a explicar hasta que no lo entienda, Gracias.

Última edición por Lepe fecha: 21-10-2005 a las 15:32:40.
Responder Con Cita