我有使用mysql数据库的php项目 我的问题是如何将数据从php(从mysql数据库中检索数据)传递给MATLAB程序 有没有这样做的工具?
答案 0 :(得分:0)
无需使用PHP。您可以使用Database Toolbox发出SQL语句将数据导入MATLAB工作区。
示例:
logintimeout(5)
conn = database('dbtoolboxdemo', 'username', 'password')
curs = exec(conn, 'select productNumber, productDescription from productTable')
>> curs =
Attributes: []
Data: {10x1 cell}
DatabaseObject: [1x1 database]
RowLimit: 0
SQLQuery: 'select productdescription from producttable'
Message: []
Type: 'Database Cursor Object'
ResultSet: [1x1 sun.jdbc.odbc.JdbcOdbcResultSet]
Cursor: [1x1 com.mathworks.toolbox.database.sqlExec]
Statement: [1x1 sun.jdbc.odbc.JdbcOdbcStatement]
Fetch: [1x1 com.mathworks.toolbox.database.fetchTheData]
close(curs)
close(conn)