-
网上书城
网上书城
实体:类型/书 /用户/订单
抽象:
类型 ==》类型编号 类型名
书 ==》书编号 书名 作者 价格 出版社 出版日期 简介 类型
用户 ==》编号 帐号 密码 真是姓名 性别 生日 手机 住址 邮箱
订单== 》编号 用户编号 书编号 数量 时间
建立数据库,建立表
CREATE DATABASE bookshop
USE bookshop
CREATE TABLE TYPES
(
tid INT PRIMARY KEY AUTO_INCREMENT,
tname VARCHAR(20)
);
CREATE TABLE books
(
bid INT PRIMARY KEY AUTO_INCREMENT,
bname VARCHAR(20),
author VARCHAR(20),
price DECIMAL(6,2),
publish VARCHAR(20),
publish_date DATETIME,
brief VARCHAR(500),
tid INT
);
CREATE TABLE users
(
uid INT PRIMARY KEY AUTO_INCREMENT,
username VARCHAR(20),
PASSWORD VARCHAR(20),
realname VARCHAR(20),
sex VARCHAR(2),
birthday DATETIM
- 2022-03-21 14:13:54下载
- 积分:1
-
ecology_rar
大名顶顶的泛微的高级产品之一,具体的文档需要的找我,QQ:6-2-3-6-8-5-9-4-1(Weaver顶顶name of one of the senior products, the specific documents required of me, QQ :6-2-3-6-8-5-9-4-1)
- 2009-02-15 13:15:53下载
- 积分:1
-
ssm-master
良好的可扩展性,ssh主流技术有强大的用户社区支持它,所以该框架扩展性非常强,针对特殊应用时具有良好的可插拔性,避免大部分因技术问题不能实现的功能。
3. 良好的可维护性,业务系统经常会有新需求,三层构架因为逻辑层和展现层的合理分离,可使需求修改的风险降低到最低。随着新技术的流行或系统的老化,系统可能需要重构,ssh构架重构成功率要比其他构架高很多(Good scalability, SSH mainstream technology has strong user community support, so the framework has strong scalability, and has good plug and play for special applications, avoiding most of the functions that can not be achieved due to technical problems.
3., good maintainability. Business systems often have new needs. The three tier architecture reduces the risk of demand modification to a minimum due to the reasonable separation of logic layer and presentation layer. With the popularity of new technology or the aging of the system, the system may need refactoring, and the success rate of SSH architecture reconfiguration is much higher than that of other architectures.)
- 2018-03-12 09:08:42下载
- 积分:1
-
freemark
学习freemark时候写的工具类,可以用在网站中,通过只初始化一次来提高性能(The learn code of freemark,which developed to a Util, can be used on the site is initialized only once to improve performance)
- 2013-04-22 21:28:50下载
- 积分:1
-
图书管理
微型课堂图书馆管理系统,图书查找,删除,添加,更改。包括普通用户,和管理员登录
- 2022-02-26 04:06:38下载
- 积分:1
-
studentmanger
主要完成界面对sql数据库的增加,删除,修改,查询,(The main completion of the interface to the SQL database, delete, modify, query,)
- 2018-01-29 21:00:22下载
- 积分:1
-
提前了解VE模块CC1100督发
CC1100 是低成本子 1 GHz收发信机的设计非常低功率无线应用程序。该电路主要是意在为 ISM (工业、 科学和医疗) 和开关磁阻电动机 (近程设备)在 315、 433、 868、 915 频带MHz,但很容易可以为编程在其他的频率在 300 348 操作MHz、 400 464 MHz 和 800-928 MHz 频段。与集成射频收发器高度可配置的基带调制解调器。调制解调器支持各种调制格式并具有可配置的数据到 500 kBaud。
- 2022-03-04 02:12:44下载
- 积分:1
-
soapui-maven-template-master
This is an example project of executing a simple mock webservice in SoapUI, and a unit test suite, using Maven.
- 2018-04-17 17:19:54下载
- 积分:1
-
类似于印象笔记的线上课程笔记操作
可以实现线上课程笔记记录,笔记分享,点赞等功能
- 2022-03-18 16:29:37下载
- 积分:1
-
elasticsearch-river-mongodb-1.7.1
elasticsearch-river-mongodb 源码,主要讲述elasticsearch 和 mongodb 同步索引实现。可以实现自己编译。(Elasticsearch-river-mongodb source code, including elasticsearch and mongodb synchronization index. Can be compiled.)
- 2013-11-14 10:46:39下载
- 积分:1