文件名称:struts hibernate 分页实例
文件大小:5.06MB
文件格式:RAR
更新时间:2011-02-11 10:56:25
hibernate j2ee struts 分页 实例
使用MSSQL2000,下面是表的脚本
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[Student]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[Student]
GO
CREATE TABLE [dbo].[Student] (
[id] [int] IDENTITY (1, 1) NOT NULL ,
[username] [varchar] (200) COLLATE Chinese_PRC_CI_AS NOT NULL ,
[password] [varchar] (20) COLLATE Chinese_PRC_CI_AS NOT NULL ,
[age] [int] NULL
) ON [PRIMARY]
GO
【文件预览】:
sh
----.project(1KB)
----.mymetadata(279B)
----WebRoot()
--------login.jsp(514B)
--------WEB-INF()
--------index.jsp(2KB)
--------META-INF()
----.myeclipse()
----src()
--------com()
--------hibernate.cfg.xml(962B)
----.mystrutsdata(255B)
----.classpath(2KB)
----.myhibernatedata(513B)