You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In FIBDataset:
For delphi up to XE2:
procedure InternalAddRecord(Buffer: Pointer; Append: Boolean); override;
for Delphi from XE3:
procedure InternalAddRecord(Buffer: TRecordBuffer; Append: Boolean);override;
This doesn't work:
pFIBDataSet1.InsertRecord([1, 1]);
(Nothing happened. No database insert. No any errors)
This works:
pFIBDataSet1.Insert;
pFIBDataSet1.SetFields([1, 1]);
pFIBDataSet1.Post;
Test_InsertRecord.zip
(I've attached test with source code and compiled executible. Database FB ver 3. fdb and fbk files and DDL as well.)
The text was updated successfully, but these errors were encountered: