摘要: 二、小项目实践项目描述:对一个用户的姓、名、年龄进行增删查改,使用ssh框架 + apache的dbcp连接池。1、确认commons-dbcp.jar已被导入(按照上篇的操作,则会被导入)2、使用mysql数据库,建立名为mytest的数据库,创建表userscreate table users ( id int not null, firstname varchar(50) not null, lastname varchar(50) not null, age int not null, primary key (id) ) ENGIN = InnoDB ROW_FORMAT = DEF 阅读全文
posted @ 2011-08-15 21:31 Kevin Bing 阅读(278) 评论(0) 推荐(0) 编辑