Invalid MEX-file, likely missing .dll
12 次查看(过去 30 天)
显示 更早的评论
In matlab 2012a on win 7 I am trying to install the otherwise very good MySQL Data Connector. However, when trying to run the generated mex-file, I get
Invalid MEX-file {path}: The specified module could not be found.
where {path} is the full path of the .mex64-file. The mex-call looks like this:
mex -I"C:\Program Files\MySQL\MySQL Server 5.6\include" -DWIN32 C:\Users\kaare\Dropbox\matlabTools\mysql.cpp "C:\Program Files\MySQL\MySQL Server 5.6\lib\libmysql.lib"
This returns no errors, and is in line with the instructions in the .cpp-file.
When running "dependency walker" on the faulty mex-file, I find that libmx.dll, libmex.dll and libmysql.dll seem to be missing in action. I assume the first two are included by matlab, and I'm not sure what the problem is with the last, since libmysql.dll is exactly in the position specified.
Has anyone got any suggestions about what might be failing?
I have no found contact information on the original author, who seems largely to have abandoned the function. Is anyone familiar with a good alternative for accessing a mySQL server from within matlab?
0 个评论
回答(4 个)
Kaustubha Govind
2014-6-19
Could you please explain this statement: "libmysql.dll is exactly in the position specified" - how do you specify this path? Typically the path to DLLs need to be added to the System PATH environment variable to be picked up at runtime. You may need to restart MATLAB after changing the System variable, so that the change gets picked up. Alternately, you can use the MATLAB setenv command to set the variable for that session.
If you ran Dependency Walker outside of MATLAB, it could just be that libmx.dll and libmex.dll are not on the System PATH, but should be resolved by MATLAB. So that could just be noise that you can ignore.
Ken Atwell
2014-6-20
Try running Dependency Walker from inside MATLAB:
>> !\path\to\depends.exe
This will give you MATLAB's "view" of your system (and libmx.dll et al will almost certainly be seen). I suspect the MySQL .DLL is not on the system path inside of MATLAB. In this case, you may need to fiddle with your path -- see setenv.
0 个评论
Rasa Karapandza
2017-2-26
Hi I have a similar problem. Mex works fin within mailable, but when compiled, throws the sam error. But dependencywalker dođeš not reveal much. Any help would be appreciated.
1 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Database Toolbox 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!