如何在 MyEclipse Derby 中创建表

发布于 2024-09-15 03:48:59 字数 52 浏览 5 评论 0原文

我可以在使用 MyEclipse Derby 制作 Hibernate 示例程序时制作表格

where i can make the table when making sample program of Hibernate with MyEclipse Derby

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

阳光下慵懒的猫 2024-09-22 03:48:59

来自 MyEclipse Derby 数据库服务器教程(我强烈建议完整阅读它):

使用数据库浏览器连接到 Derby

切换到MyEclipse 数据库
探索者视角。请使
当然,德比已经开始并正在运行
在您尝试连接到它之前。
数据库浏览器视图中,右侧
单击 MyEclipse Derby 驱动程序
然后选择打开连接...
连接。

注意:如果您没有看到 MyEclipse Derby 驱动程序,请参阅恢复
MyEclipse Derby 驱动程序在
以下部分。

您可以使用嵌入式 Derby
就像任何其他数据库一样
MyEclipse 中的数据库。为了进一步
详细信息,请参考数据库
资源管理器
教程。

MyEclipse Derby 附带了一个示例
名为myeclipse的数据库。这
数据库包括两个示例模式,
经典汽车和我的博客。其他模式
可见的是德比的系统架构。

替代文字 “替代文本”

图 6. 连接到 Derby
使用 MyEclipse Derby 驱动程序

From the MyEclipse Derby Database Server Tutorial (and I warmly recommend reading it entirely):

Connecting to Derby with the Database Explorer

Switch to the MyEclipse Database
Explorer
perspective. Please make
sure Derby, is started and running
before you attempt to connect to it.
In the DB Browser view, right
click the MyEclipse Derby driver
and then select Open connection...
to connect.

Note: If you do not see the MyEclipse Derby driver, see Restore
MyEclipse Derby Driver
in the
following section.

You may use the embedded Derby
database just like you would any other
database in MyEclipse. For further
details, refer to the Database
Explorer
tutorial.

MyEclipse Derby ships with a sample
database named myeclipse. This
database includes two sample schemas,
CLASSICCARS and MYBLOG. Other schemas
visible are Derby's system schemas.

alt text alt text

Figure 6. Connecting to Derby
using the MyEclipse Derby driver

揽清风入怀 2024-09-22 03:48:59

请按照以下步骤操作:

1.要在MyEclipse Derby中创建表,首先选择右上角MyEclipse IDE中的打开透视图,如下图所示:

MyEclipse Database Explorer Showview

  1. 右键单击​​ MyEclipse Derby 并单击 打开连接
  2. 右键 点击 Connected to MyEclipse Derby [classiccars] 并点击 New SQL Editor,如下图所示:

Connnected to MyEclipse Derby

  1. Editor 窗口中编写如下代码:

CREATE TABLE APP.EMPINFO
(EMP_ID INT NOT NULL、名字 VARCHAR(20)、中间名 VARCHAR(20)、姓氏 VARCHAR(20)、
DATEOFBIRTH 日期不为空、电子邮件 VARCHAR(50)、附件 VARCHAR(5000)、PHONENO 整数、
ADDRESS VARCHAR(256), PINCODE 整数, CONSTRAINT EMPID_PK PRIMARY KEY (EMP_ID));

这里 APP 是架构名称,EMPINFO 是表名称。

新 SQL 编辑器中显示了如何在 MyEclipse Derby 中创建表:

How to create table in MyEclipse Derby

Follow the steps below:

1.For creating table in MyEclipse Derby first of all select open perspective in MyEclipse IDE at top right corner, image shown below:

MyEclipse Database Explorer Showview

  1. Right click on MyEclipse Derby and click Open connection
  2. Right click on Connected to MyEclipse Derby [classiccars] and click on New SQL Editor, image shown below:

Connnected to MyEclipse Derby

  1. In Editor window write the code shown below:

CREATE TABLE APP.EMPINFO
(EMP_ID INT NOT NULL, FIRSTNAME VARCHAR(20), MIDDLENAME VARCHAR(20), LASTNAME VARCHAR(20),
DATEOFBIRTH DATE NOT NULL, EMAIL VARCHAR(50), ATTACHMENT VARCHAR(5000), PHONENO integer,
ADDRESS VARCHAR(256), PINCODE integer, CONSTRAINT EMPID_PK PRIMARY KEY (EMP_ID));

Here APP is schema name and EMPINFO is table name.

How to create table in MyEclipse Derby is shown in New SQL Editor:

How to create table in MyEclipse Derby

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文