How to populate matlab GUI edit texts with values from MySQL database?
1 回表示 (過去 30 日間)
古いコメントを表示
I have created a table with 10 columns in MySQL and manage to connect it with Matlab. What is the code to retrieve those data and display them in a matlab GUI edit texts boxes?
2 件のコメント
回答 (1 件)
Piyush Kumar
2024 年 10 月 21 日
Hi,
If you have created the edit text box using uicontrol, you can use the set function to display the value extracted from the database.
For example,
fig = figure('Position', [100, 100, 300, 200], 'Name', 'Simple GUI');
% Create an edit text box
editText = uicontrol('Style', 'edit', ...
'Position', [50, 100, 200, 40], ...
'String', 'Default value');
% db_value = fetch(conn, sqlquery) % Replace conn and sqlquery with the correct values
db_value = 'Hi, I am from db'
% Set the string value of the edit text box
set(editText, 'String', db_value);
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!