使用 Visual Studio Code SQLite 擴充套件來瀏覽 SAP CAP 資料庫

注销發表於2021-04-11

在 SAP Cloud Application Programming 程式設計模型裡,我們可以使用下面的命令列,使用持久化資料庫( persistent database ) 來儲存 entity 的資料。

cds deploy --to sqlite:my.db

cds deploy --to sqlite:my.db
filling sap.capire.bookshop.Authors from db\data\sap.capire.bookshop-Authors.csv
filling sap.capire.bookshop.Books from db\data\sap.capire.bookshop-Books.csv
/> successfully deployed to ./my.db

/> updated ./package.json

這條命令會在工程資料夾下面生成一個my.db檔案。

.db 格式的檔案,在 Visual Studio Code 裡無法直接開啟:

可以安裝這個名為 sqlite 的 Visual Studio Code 擴充套件:

安裝完畢後,能在 Visual Studio Code 左邊看到一個新的 SQLITE EXPLORER皮膚,裡面可以瀏覽 my.db 檔案裡包含的資料庫表和檢視:

右鍵選單裡選擇 Show Table,即可檢視指定資料庫表裡的內容:

還可以自己編輯 SQLite Query,然後透過右鍵選單 Run Selected Query 來執行:

更多Jerry的原創文章,盡在:"汪子熙":

相關文章