Install BDE: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
m (Wikipedia python library)
 
m (Adding new author and category links.)
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{PageAuthor|Vytautas}}
== How To Use ==
== 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.
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.
Line 13: Line 15:
Vytautas
Vytautas


Page author: Vytautas
[[Category:Database Functions]]

Latest revision as of 12:27, 24 June 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