Install BDE: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
m (Updated author links.)
m (Adding new author and category links.)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
{|align=right
{{PageAuthor|Vytautas}}
|<small>Author: [[{{ns:2}}:Vytautas|Vytautas]] ([[{{ns:3}}:Vytautas|talk]], [[{{ns:-1}}:Contributions/Vytautas|contrib]])</small>
 
|}
<br style="clear:both;">
== 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 16: Line 14:


Vytautas
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