fetching data from access database in MATLAB R2015b - Reg
1 次查看(过去 30 天)
显示 更早的评论
I executed a query in MATLAB R 2013a with the following code.
conn = database('MultiProductInventory','admin','admin');
query1 = ['SELECT ALL ID FROM "stocks" WHERE PI=',num2str(x(1))];
query2=[''];
for fidx=1:8
query2 = strcat(query2,sprintf('and F%d=',fidx),num2str(x(fidx+1)));
end
query3 = strcat(query1,query2);
curs=exec(conn,query3);
curs=fetch(curs);
y1= curs.Data;
It worked well in MATLAB R2013a. The same query when i tried to execute in MATLAB R 2015b. It is displaying the error message:Undefined function fetch for input argument of type struct. what changes i should make to execute the query in R2015b.
0 个评论
回答(0 个)
另请参阅
类别
在 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!