Ezi Posted July 6, 2011 Share Posted July 6, 2011 Hi all, I'm trying to connect with Php to Hyperfile SQL databases. It actually works under Apache, but I've got the following error message under IIS : "Le pilote spécifié n'a pas été chargé en raison de l'erreur système 5 : SQL state IM003". Which means in english : "Specified driver could not be loaded due to system error 5 : SQL state IM003" (Access is denied.). Here is the connection string : $host="Domino"; // Is my DSN ODBC $user="admin"; $password=""; $connect = ("$host", "$user", "$password"); $requete = "SELECT * FROM clients"; $data = odbc_exec($connect,$requete); I just started with IIS and Web programmation, so I require your help. I personnally think about IIS' rights. Some information : Windows server 2003, IIS 6. Using ODBC; drivers are successfully installed (I can export databases to excel). Thanks in advance, Ezi. PS : I'm french. Sorry for my english. Quote Link to comment https://forums.phpfreaks.com/topic/241194-driver-could-not-be-loaded-system-error-5/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.