@programmerdelphi2k
Ok, I Update the InsertSQL as the following:
INSERT HIGH_PRIORITY INTO products
(ProductID, Barcode, ProductName, CategoryID, LevelNo, ProductType, QtyHasDigits, IsService, MinQty, UserID)
VALUES
(:ProductID, :Barcode, :ProductName, :CategoryID, 4, 0, 0, 0, 0, 1);
Insert INTO pricelists
(ProductID,
SalePrice,
MinSalePrice,
Service)
VALUES
(:ProductID,
:SalePrice,
:MinSalePrice,
:Service)
and it is success.
Thanks you