- Apache Derby 教程
- Apache Derby - 首頁
- Apache Derby - 簡介
- Apache Derby - 部署模式
- Apache Derby - 環境設定
- Apache Derby - 工具
- Apache Derby - 語法
- Apache Derby - 資料型別
- Apache Derby - 建立表
- Apache Derby - 刪除表
- Apache Derby - 插入資料
- Apache Derby - 檢索資料
- Apache Derby - 更新資料
- Apache Derby - 刪除資料
- Apache Derby - Where 子句
- Apache Derby - GROUP BY 子句
- Apache Derby - Order By 子句
- Apache Derby - Having 子句
- Alter Table 語句
- Apache Derby - Derby 索引
- Apache Derby - 過程
- Apache Derby - 模式
- Apache Derby - 觸發器
- Apache Derby 有用資源
- Apache Derby - 快速指南
- Apache Derby - 有用資源
- Apache Derby - 討論
Apache Derby - 部署模式
你可以透過嵌入式模式和伺服器模式這兩種模式部署 Apache Derby。
嵌入式模式
你可以使用 Java 應用程式(使用嵌入式驅動程式)在嵌入式模式下執行 Derby。如果你在嵌入式模式下部署 Derby,那麼資料庫引擎將在與 Java 應用程式相同的 JVM 中執行。它與應用程式一起啟動和停止。你只能使用該應用程式訪問資料庫。
伺服器模式
在伺服器模式中,Derby 將在應用程式伺服器的 JVM 中執行,你可以在其中向伺服器傳送請求以訪問它。與嵌入式模式不同,多個應用程式(Java)可以向伺服器傳送請求並訪問資料庫。
廣告