Install BDE: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
m (Updated author links.)
m (Added category links.)
Line 16: Line 16:


Vytautas
Vytautas
[[{{ns:14}}:Database Functions]]

Revision as of 21:34, 30 April 2005

Author: Vytautas (talk, contrib)


How To Use

To install BDE from NSIS first extract BDEINST.DLL from BDEINST.CAB, which should be found in "Program Files\Common Files\Borland Shared\BDE" folder and then include this code in your script.

The Script

GetTempFileName $0
File /oname=$0 C:\Path\To\Extracted\BDEINST.DLL
CallInstDLL $0 /NOUNLOAD DllRegisterServer

NOTE: The previous code produced an error on some machines and thus has been replaced by this function. This page was created from info in this thread. Also a page for the BDE Alias plugin is available.

Vytautas