Entry point location error in MYSQL

0

What could this error be?

I tried everything and could not solve it ...

    
asked by anonymous 12.07.2014 / 18:15

2 answers

3

It seems like mysqlfront.exe is looking for a mysql_drop_db procedure that is deprecated and does not exist in your current MySQL library.

Go to a library of dll's , look for a previous version of libmySQL.dll that contains the mysql_drop_db procedure and replace (without losing the original).

If this does not resolve, try installing another MySQL IDE that was developed directly by the Oracle team and from my experience works perfectly for all kinds of projects and problems:
MySQL WorkBench

    
12.07.2014 / 20:28
1

It may be the wrong version of the DLL or you are not finding the correct version of it (you may have other reasons too). Check these two things. Is the dll in c: \ windows \ system32?

    
12.07.2014 / 19:10