/* MySQL Data Transfer Source Host: localhost Source Database: aceshop Target Host: localhost Target Database: aceshop Date: 2013-9-28 18:14:20 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for t_shopmanager -- ---------------------------- DROP TABLE IF EXISTS `t_shopmanager`; CREATE TABLE `t_shopmanager` ( `SMname` varchar(25) DEFAULT NULL, `SMpassword` varchar(25) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=gbk; -- ---------------------------- -- Records -- ---------------------------- INSERT INTO `t_shopmanager` VALUES ('admin', '11245102');