需要在matlab读取access数据库数据。链接类的文章比较多,也通过了
http://blog.csdn.net/xjujun/article/details/9969943
实际遇到的困难在于链接表格很容易通过
conn=database( 'data' , '' , '' )cursor = exec(conn,'select fundNetWorth from fundNetWorthData ')
//测试成功
而在查询语句增加条件 where就不知道如何写了
cursor = exec(conn,'select * from fundNetWorthData where (fundCode=''sh501001'')')//测试成功
留意是两个单引号