how can i use variable instead of constant to get data from mysql database?
5 ビュー (過去 30 日間)
古いコメントを表示
ashutosh chandra bhensle
2014 年 5 月 22 日
コメント済み: ashutosh chandra bhensle
2014 年 5 月 23 日
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 件のコメント
採用された回答
Roger Wohlwend
2014 年 5 月 22 日
Your syntax is wrong. Try the following:
id = 1; qry = sprintf('Select fname From mydb.myface WHERE id = %d', id);
その他の回答 (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!