how can i use variable instead of constant to get data from mysql database?
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
ashutosh chandra bhensle
am 22 Mai 2014
Kommentiert: ashutosh chandra bhensle
am 23 Mai 2014
qry = sprintf('Select fname From mydb.myface WHERE id=1');
working but
id=1; qry = sprintf('Select fname From mydb.myface WHERE id=id'); not working please help me!!
0 Kommentare
Akzeptierte Antwort
Roger Wohlwend
am 22 Mai 2014
Your syntax is wrong. Try the following:
id = 1; qry = sprintf('Select fname From mydb.myface WHERE id = %d', id);
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Database Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!