Search the Wiki

Viewing 346 to 348 of 409 items

Translate OEM Charset

The following example shows how to add OEM Charset translation to daADO.pas: function TdaChildADOQuery.Translate(Src, Dest: PChar; ToOem: Boolean): Integer; begin if (Src <> nil) then begin if ToOem then CharToOemBuff(Src, Dest, StrLen(Src)+1) else OemToCharBuff(Src, Dest, StrLen(Src)+1); Result:=StrLen(Dest); end else Result:=0; end;  

0

IB Express Compatibility

The ReportBuilder Query Tools support the Interbase Express data access components via a DADE plug-in. The plug-in consists of the daIBExpress.dcu unit and the rbIBExx.bpl package. (Note: the ‘7x’ is replaced by 76 for Delphi 6, 77 for Delphi 7, etc). The rbIBExx.bpl package is compatible with the version of InterBase Express that ships with  Full Article…

0

DADE Plugins

DADE includes DataView classes that support Delphi’s BDE, ADO, and IBExpress data access components. Additional plug-ins can be created to support products that contain SQL based TDataSet descendants. Below is a list available DADE Plug-ins.  Plugin Name Description   daADO by Digital Metaphors Included with ReportBuilder. DataView classes that support the Delphi ADO data access components.  Full Article…

0