zoukankan      html  css  js  c++  java
  • 使用 Visual Studio Code SQLite 扩展来浏览 SAP Cloud Application Programming 数据库

    在 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 dbdatasap.capire.bookshop-Authors.csv
    filling sap.capire.bookshop.Books from dbdatasap.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的原创文章,尽在:"汪子熙":

  • 相关阅读:
    hdu 5053 the Sum of Cube
    [LeetCode] Word Pattern
    [LeetCode] Minimum Depth of Binary Tree
    [C++] std::vector
    [LeetCode] Count Binary Substrings
    [LeetCode] Degree of an Array
    [LeetCode] String to Integer (atoi)
    [LintCode] 比较字符串
    [LeetCode] Valid Parentheses
    [LeetCode] Perfect Number
  • 原文地址:https://www.cnblogs.com/sap-jerry/p/14644878.html
Copyright © 2011-2022 走看看