Excel VBA – Worksheet 物件的 Columns , Rows , Cells , Range 屬性
測試環境 Windows 10 + Excel 2016 這邊看一下 Excel Worksheet 物件 https://learn.microsoft.com/zh-tw/office/vba/api/excel.worksheet 如何透過 Columns , Rows , Cells , R […]
測試環境 Windows 10 + Excel 2016 這邊看一下 Excel Worksheet 物件 https://learn.microsoft.com/zh-tw/office/vba/api/excel.worksheet 如何透過 Columns , Rows , Cells , R […]
前面一篇利用 ODBC 讓 Excel 讀取資料庫的資料 – https://benjr.tw/104821 , 那可以把 Excel 資料回寫到資料庫嗎? 可以利用 VBA 的功能來做到. 參考文章 https://www.youtube.com/watch?v=VRm8tUerrZU […]
測試環境 Windows 10 + MySQL Community Server 8.0.31 Visual Studio Windows 須先安裝 visual studio 2019 x64 redistributable 下載點 – https://learn.microsoft.com/en […]
Excel 的 Data Source 支援多種來源, 除了從檔案外還支援 ODBC 如 MySQL 等資料庫來源 ,下面就來看一下要怎麼從 Excel 同步 (synchronization) 資料庫的資料. 參考文章 https://www.youtube.com/watch?v=VRm8tUe […]
建立測試用資料表,與其資料. SHOW TABLES SQLite 沒有 SHOW TABLES 指令,可以透過以下指令查詢現有的資料表. 執行結果 DESCRIBE Table SQLite 沒有 DESCRIBE Table 指令,可以透過以下指令查詢現有的資料表欄位. 執行結果 或 執行結果
SQLite 的時間函數跟 MySQL / MariaDB 差蠻多的,以下來看幾個差異點. Now SQLite 沒有 now 函數,但 在 SQLite now 是一個時間字串參數,可以透過 SQLite 的時間函數獲得目前的日期與時間. 執行結果 datetime datetime 這個函數可以 […]
測試環境 Windows 10 , Excel 2016 參考文章 – https://officeguide.cc/excel-compare-two-excel-sheets-tutorial-examples/ Excel 這兩張表格的差異在哪裡,用肉眼比對很累,有什麼方式可以快速 […]
參考 – https://jeffwen0105.com/%E7%AC%AC%E4%B8%80%E6%AC%A1%E4%BD%BF%E7%94%A8-python-flask-restful-api-%E5%B0%B1%E4%B8%8A%E6%89%8B-get-%E6%96%B9%E6 […]
使用 functools.singledispatch 可以讓程式更容易閱讀,來看以下2個範例. 測試環境為 CentOS 8 x86_64 , 參考範例 – https://towardsdatascience.com/simplify-your-functions-with-func […]
透過自己寫 Systemd Unit Files 方式來取代傳統的 (crontab) cron table 啟動程式. 測試環境 CentOS 8 x86_64 (虛擬機) 寫了一支會定期 60 秒寫入時間資料到檔案的 c++ 程式. 編譯成可執行檔. 程式放到 /sbin/ 路徑. 開始編輯 S […]