- 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 - 按条款排序
- Apache Derby -having 子句
- 修改表语句
- Apache 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)可以向服务器发送请求并访问数据库。