Saludos.
Retomando el tema, estoy haciendo las pruebas con el código expuesto por Wilson; pero estoy obteniendo un mensaje de error:
"Class EOleException with message 'Key value for this row was changed or deleted at the data store. The local row is now deleted'".
La estructura es la siguiente:
CREATE TABLE sys.entrada_salida_inventario
(
entrada_salida_inventarioid integer NOT NULL DEFAULT nextval('sys."ENTRADA_SALIDA_INVENTARIO_ENTRADA_SALIDA_INVENTARIOID_seq"'::regclass),
companiaid integer NOT NULL,
divisionid integer NOT NULL,
localidadid integer NOT NULL,
tipo_documentoid integer NOT NULL,
almacenid integer NOT NULL,
numero integer NOT NULL,
fecha timestamp without time zone NOT NULL,
fecha_vencimiento timestamp without time zone,
suplidorid integer,
ncf_codigo character varying(11),
numero_comprobante_fiscal character varying(8),
referencia character varying(30),
concepto character varying(100),
condicion_pagoid integer,
clase_costo_gastoid integer,
monedaid integer NOT NULL,
tasa numeric(18,2) NOT NULL,
indicador_autorizada character varying(1) NOT NULL,
indicador_actualizada character varying(1) NOT NULL,
total_bruto numeric(18,4) NOT NULL,
total_descuento numeric(18,4) NOT NULL,
total_subtotal numeric(18,4) NOT NULL,
total_itbis numeric(18,4) NOT NULL,
total_neto numeric(18,4) NOT NULL,
indicador_entrada_diario character varying(1) NOT NULL,
estado character varying(1) NOT NULL,
indicador_impresa character varying(1),
CONSTRAINT "PK_ENTRADA_SALIDA_INVENTARIO" PRIMARY KEY (entrada_salida_inventarioid )
)
WITH (
OIDS=FALSE
);
ALTER TABLE sys.entrada_salida_inventario
OWNER TO admbon;
GRANT ALL ON TABLE sys.entrada_salida_inventario TO admbon;
GRANT ALL ON TABLE sys.entrada_salida_inventario TO sys_user WITH GRANT OPTION;