Scalabium Software |
|
Knowledge for your independence'. | |
Home Delphi and C++Builder tips |
#81: How can I check if BDE exists/installed? |
|
you can check it in two methods: 1. read the registry key: RootKey := HKEY_LOCAL_MACHINE; OpenKey('SOFTWARE\Borland\Database Engine', False); try s := ReadString('CONFIGFILE01'); //BDE installed finally CloseKey; end; 2. you can try to initialize the BDE IsBDEExist := Check(dbiInit(nil)) PS: I prefer the second because the some no-good un-installators may remove the BDE-file but forget to remove the key in registry:)
|
Copyright© 1998-2024, Scalabium
Software. All rights reserved. |