文件名称:基于MyEclipse的SSH整合实例
文件大小:762KB
文件格式:DOC
更新时间:2011-09-24 18:10:03
SSH
实例中用到的数据库 /* SQLyog - Free MySQL GUI v5.02 Host - 5.0.15-nt : Database - ssh1 ********************************************************************* Server version : 5.0.15-nt */ create database if not exists `ssh1`; USE `ssh1`; /*Table structure for table `user` */ DROP TABLE IF EXISTS `user`; CREATE TABLE `user` ( `id` int(11) NOT NULL auto_increment, `name` varchar(20) collate utf8_unicode_ci NOT NULL, `password` varchar(20) collate utf8_unicode_ci NOT NULL, `purview` varchar(20) collate utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*Data for the table `user` */ insert into `user` values (1,'admin','admin','MANAGER');