實(shí)現(xiàn)基本的購物車功能。
eclipse+sqlserver2005
1.主要強(qiáng)調(diào)了購物車的業(yè)務(wù)邏輯。
2,利用javabean封裝。比較適合jsp初學(xué)者。
3.簡潔實(shí)用。可以在此基礎(chǔ)上開發(fā)更加復(fù)雜功能的購物網(wǎng)站。
數(shù)據(jù)庫建立
create database shop_db
go
use shop_db
go
create table t_sp
(
s_id int identity(1,1) primary key,
s_name varchar(20) not null,
s_price money not null
)
go
insert into t_sp values( IBM筆記本電腦 , 19999 )
insert into t_sp values( HP商務(wù)筆記本電腦 , 8666 )
insert into t_sp values( 精通JSP技術(shù) , 236 )
insert into t_sp values( ASP.NET高級應(yīng)用 , 156 )
insert into t_sp values( J2EE高級開發(fā) , 126 )
insert into t_sp values( 華碩筆記本電腦 , 6789 )
go
select * from t_sp
go
標(biāo)簽:
sqlserver
eclipse
2005
邏輯
上傳時間:
2013-12-20
上傳用戶:netwolf
Unix Unleashed, Third Edition is written with the power user and system administrator in mind. This book will help the reader understand the nuances of the major Unix variants including SVR4, HP-UX, Solaris, AIX, BSD, IRIX, SunOS, and Linux. It will help the reader decide which Unix shell works best for their particular situation. Other topics such as Kernel Configuration, Networking, User Administration, and File Management are covered extensively for the administrator who wants a variety of options to choose from for best performance. The book also provides in-depth coverage of configuring and optimizing mail, DNS, HTTP and other services many companies deploy across their intranet and on the Internet
標(biāo)簽:
administrator
Unleashed
Edition
written
上傳時間:
2017-01-13
上傳用戶:來茴