码迷,mamicode.com
首页 > Web开发 > 详细

jsp简易留言板

时间:2015-06-10 01:23:02      阅读:309      评论:0      收藏:0      [点我收藏+]

标签:留言板   structure   localhost   

/*
Navicat MySQL Data Transfer

Source Server         : .
Source Server Version : 50624
Source Host           : localhost:3306
Source Database       : dbliuyan

Target Server Type    : MYSQL
Target Server Version : 50624
File Encoding         : 65001

Date: 2015-06-09 19:56:58
*/

SET FOREIGN_KEY_CHECKS=0;

-- ----------------------------
-- Table structure for `tblliuyan`
-- ----------------------------
DROP TABLE IF EXISTS `tblliuyan`;
CREATE TABLE `tblliuyan` (
  `id` smallint(255) unsigned zerofill NOT NULL AUTO_INCREMENT,
  `liuyan` text NOT NULL,
  `UsrName` varchar(255) NOT NULL,
  `ip` varchar(255) NOT NULL,
  `time` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- ----------------------------
-- Records of tblliuyan
-- ----------------------------

dbliuyan.sql

下载地址(http://down.51cto.com/data/2058542

技术分享

本文出自 “p6xos” 博客,请务必保留此出处http://p6xos.blog.51cto.com/6221518/1660197

jsp简易留言板

标签:留言板   structure   localhost   

原文地址:http://p6xos.blog.51cto.com/6221518/1660197

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!