fetching data from access database in MATLAB R2015b - Reg
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (0)
Vedere anche
Categorie
Scopri di più su Database Toolbox in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!