Consulta usando TDataRow con FWmariaconnection
Posted: Mon Mar 15, 2021 3:53 pm
Hola Gente!
Intento guardar (insertar) un registro asignado Data, agregar, a un Query del que tomo todos _
Luego de asignar datos, a todos _, excpeto el id incremental; y guardar, recibo el alerta: -1 Record not found
Al observar lo guardado; todos los datos estan correctamente asignados
Que me dice tal mensaje?
Esta es la tabla:
Intento guardar (insertar) un registro asignado Data, agregar, a un Query del que tomo todos _
Luego de asignar datos, a todos _, excpeto el id incremental; y guardar, recibo el alerta: -1 Record not found
Al observar lo guardado; todos los datos estan correctamente asignados
Que me dice tal mensaje?
Esta es la tabla:
Code: Select all
"CREATE TABLE IF NOT EXISTS movcuenta (" + ;
"id MEDIUMINT(7) UNSIGNED ZEROFILL AUTO_INCREMENT PRIMARY KEY," + ;
"id_cliprv MEDIUMINT(7) UNSIGNED ZEROFILL NOT NULL," + ;
"FeAsiento DATE," + ;
"FeHh_Asiento DATETIME DEFAULT '0000-00-00 00:00:00'," + ;
"CompNro CHAR(13) NOT NULL," + ;
"Detalle VARCHAR(100)," + ;
"Monto DECIMAL(10,2) NOT NULL," + ;
"IdPagoTipo TINYINT(1) UNSIGNED ZEROFILL NOT NULL," + ;
"id_Concepto TINYINT(2) UNSIGNED NOT NULL," + ;
"id_banco SMALLINT(3) UNSIGNED ZEROFILL NOT NULL," + ;
"id_cuenta SMALLINT(5) UNSIGNED ZEROFILL NOT NULL," + ;
"EsCta3ro BIT," + ;
"id_user TINYINT(3) UNSIGNED NOT NULL DEFAULT 0," + ;
; // Indices
"INDEX Acreditado (FeHh_Asiento) )" + ;
"COMMENT= 'Movimientos Actuales'," + ;
"ENGINE= INNODB," + ;
"COLLATE= latin1_spanish_ci," + ;
"DEFAULT CHARSET=latin1;"