我正在尝试使用Matlab建立mySql连接,我已阅读了一些教程,但不幸的是我无法得到它们的工作。我曾尝试编译源代码(.cpp),但我收到以下错误:
Error: Could not detect a compiler on local system
which can compile the specified input file(s)
C:\PROGRA~1\MATLAB\R2010B\BIN\MEX.PL: Error: No compiler options file could be found to compile source code. Please run "mex -setup" to rectify.
所以我键入了“mex -setup”
Please choose your compiler for building external interface (MEX) files:
Would you like mex to locate installed compilers [y]/n? y
Select a compiler:
[0] None
Compiler:
但没有编译器。
任何人都可以帮助我,如何在matlab和mysql之间建立连接,我使用的是Windows 7 64位和Matlab 2010b。
我已经安装了wampserver。
答案 0 :(得分:1)
我猜你也安装了Matlab 64位,它没有内置的MEX编译器(32位版本使用lcc)。您有几个选项,但最简单的方法是安装Visual C ++ Express(它是免费的!http://www.microsoft.com/express/Windows/),它将在mex -setup列表中为您提供64位兼容的编译器。您必须仔细检查编译器2010b的哪个版本兼容。
警告:我曾尝试过一次并且无法使其工作,但它与2007b或其他东西一样,我没有那么努力,我只是安装了32位Matlab。
答案 1 :(得分:1)
您是否尝试使用JBCC连接器从MATLAB建立MySQL连接?
我成功完成了这个问题,将完整的工作流程与代码示例(需要数据库工具箱)放在一起:
connection of MATLAB 7.0 and MYSQL
虽然没有试过64位。请告诉我它是否会失败。
<强>更新强>
您还可以尝试向文件交换提供以下不需要数据库工具箱的提交: