Database
imt.asc
Associated article: In-Memory Tables for Delphi
Tags: Database
Source code examples accompanying the article by Alexandre M. Gimenez in which he presents a Delphi component that bridges between Delphi and the Borland Database Engine functions that access in-memory tables. Also see IMT.ZIP
_In-Memory Tables for Delphi_
by Alexandre M. Gimenez
Listing One
TMemTb = class(TDataSet)
private
FFieldStruc: TStrings;
prvHand : HDBICur;
procedure SetTheFields(Value: TStrings);
function RecordMatch(const A:array of const): boolean;
procedure Fill_Field_Spec(fld_spec, fld_name:string; var ...


