
Small Footprint DB API for VB and/or Delphi
Quote:
>I'm looking for a DLL or similar to provide very simple DB access.
>I have an application that needs to simply store some data, do some simple
>searches and maybe delete.
There are many DB3 units (with sources) availible for
Pascal that
works for Delphi as wel. For Delphi specific there is a dBase III
component on one of the Delphi sites on the net, look at the Delphi
Station.
But if its really simple what you want, why not use the Type Record
definitions from Pascal (Delphi) itself? These are very easy to use
and there is absolutly no faster (ans smaller) way.
Something like:
TYPE
TMyRecord = Record
Name : String[35];
FirstName : String[15];
End;
VAR
MyRec : TMyRecord;
MyFile : File of TMyRecord;
If you make a linked list of the records it is extremly powerfull and
fast. And the best thing is, no DLL's needed, just native Pascal code.
Ofcourse in this case you have to write the searche code yourself, but
that isn't to difficult.
Bye,
Scott.