MATLAB,matlab下載

來源:互聯網
上載者:User

MATLAB,matlab下載
MATLAB - SQL 串連技術[純程式碼]代碼塊

代碼塊文法遵循標準 MATLAB 代碼

function conn_matlabdb()% 瑞 2015.6.27 MATLAB R2013b% 功能描述:建立 matlab 與資料庫 SQL 串連% 採用 JDBC 串連的方法:安裝驅動包 -> 添加路徑 -> 重啟 matlab%                                -> 建立資料庫連接(基於 SQL Server 2008)% 參考串連 http://m.blog.csdn.net/blog/wang_306/37818681%% 輸入(依此):資料庫名稱,使用者名稱,密碼,磁碟機名稱*,本機伺服器地址*databasename = 'matlabdb';username = 'matlabuser';password = '******';driver = 'com.mysql.jdbc.Driver';databaseurl = 'jdbc:mysql://localhost:3306/matlabdb';%% 建立 SQL 串連conn = database(databasename, username, password, driver, databaseurl);ping(conn);%% 串連判定:1 已串連 | 0 未串連isconnection(conn);%% 擷取資料為 cell 格式curs=exec(conn, 'select * from matlabdb.tb_dw_addr'); % ''中為 SQL 陳述式curs=fetch(curs);datacell = curs.Data;%% 關閉串連close(curs);close(conn)
總結

更久沒寫部落格了,現在和以後會繼續留在浙江理工大學,繼續喜歡代碼,學的東西會越來越多,給自己加油。
想和大家一起交流,我的電子郵件:wangrui_key@163.com

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.