A. 網站商品的文字介紹 圖片 放在資料庫里還是放在WEB空間里呢
最好將圖片上傳到WEB空間。將描述信息保存到資料庫。
B. 電商網站 使用 讀取資料庫圖片好 還是使用靜態網頁好
電商網站一般都是放的靜態圖片的,不會在資料庫讀。
C. 購物網資料庫
不知道你的系統是怎麼做的。
你可以用mysql免費的,很好用。
www.mysql.com使用社區版的就是那個community版的免費。
如果你是必須要用sqlserver那麼盜版的滿天飛
隨便什麼地方都能找到。
不過還是建議你到www.verycd.com上尋找。
D. 像購物網站,裡面的圖片在資料庫中是以圖片文件存儲還是以路徑存儲,如果都行的話,推薦用哪一種呢
圖片格式存儲。
E. 購物網站上面的物品詳細頁面有圖片放大功能,有多個圖片,資料庫怎麼設計保存
可以新建多個表 也可以用串
1.jpg,2.jpg,3.jpg 串的話麻煩一點 不過如果你js好的話 串也可以直接解析.
F. 購物網站資料庫設計
一、概述
網上購物店的數據模型,主要模式有產品:proct ,帳戶:Account,定單:Order。和產品相關的表有category ,proct,item, inventory, supplier;和用戶相關表有的account ,signon,profile;和定單相關的表有orders,orderstatus,lineitem ,整體關系如下.
二、帳戶模型
帳戶模型,記錄者用戶的登錄名稱,密碼。以及個人信息如地址,性名,電話等,還有它在系統中的profile信息。表有Account 主鍵是userID,它記錄用戶的基本信息,如email,name等。Signon 表記錄者userID和password,Profile表記錄者用戶的登錄系統的系統設置。可以根據用戶的類型,顯示不同的登錄信息。
(1)account表
create table account (
userid varchar(80) not null,
email varchar(80) not null,
name varchar(80) not null,
status char(2) null,
addr1 varchar(80) not null,
addr2 varchar(40) null,
city varchar(80) not null,
state varchar(80) not null,
zip varchar(20) not null,
country varchar(20) not null,
phone varchar(80) not null,
constraint pk_account primary key (userid)
)
說明:primary key是userID,它記錄帳戶的基本信息。
(2)Signon 表
create table signon (
username varchar(25) not null,
password varchar(25) not null,
constraint pk_signon primary key (username)
)
說明:記錄登錄名和密碼。
(3)Profile表
create table profile (
userid varchar(80) not null,
langpref varchar(80) not null,
favcategory varchar(30),
mylistopt int,
banneropt int,
constraint pk_profile primary key (userid)
)
說明:用戶的登錄信息,方便個性化定製。
(4)Bannerdata 表
create table bannerdata (
favcategory varchar(80) not null,
bannername varchar(255) null,
constraint pk_bannerdata primary key (favcategory)
)
說明:記錄不同的登錄信息。
三、產品模型
產品的模型主要有分類,它是產品的大類。表category 就是記錄分類名稱,描述信息。Proct
記錄每個產品的基本信息,包括產品名稱,和產品的描述。它是一對多的關系。Supplier 表
記錄產品的提供者信息,包括提供者的名稱,地址,狀態等。Item 記錄產品的提供者,產
品ID,價格,狀態。Inventory 表記錄產品的數量。關系如下:
(1) category表
create table category (
catid char(10) not null,
name varchar(80) null,
descn varchar(255) null,
constraint pk_category primary key (catid)
)
(2)proct表
create table proct (
proctid char(10) not null,
category char(10) not null,
name varchar(80) null,
descn varchar(255) null,
constraint pk_proct primary key (proctid),
constraint fk_proct_1 foreign key (category)
references category (catid)
)
(3) item表
create table item (
itemid char(10) not null,
proctid char(10) not null,
listprice decimal(10,2) null,.unitcost decimal(10,2) null,
supplier int null,
status char(2) null,
attr1 varchar(80) null,
attr2 varchar(80) null,
attr3 varchar(80) null,
attr4 varchar(80) null,
attr5 varchar(80) null,
constraint pk_item primary key (itemid),
constraint fk_item_1 foreign key (proctid)
references proct (proctid),
constraint fk_item_2 foreign key (supplier)
references supplier (suppid)
)
(4) inventory 表
create table inventory (
itemid char(10) not null,
qty int not null
)
(5)supplier表
create table inventory (
suppid int not null
name varchar(80)
status char(2)
attr1 varchar(80)
attr2 varchar(80)
city varchar(80)
state varchar(80)
zip char(6)
phone varchar(80)
constraint pk_supplier primary key (suppid),
)
四、定單模型
定單記錄用戶的選擇產品信息,數量,表主要有Orders,記錄用戶的地址,帳戶信息,總金
額。Orderstatus 記錄定單狀態。Lineitem 記錄定單中的產品數量,單位價格,產品ID。
(1)orders表
create table orders (
orderid int not null,
userid varchar(80) not null,
orderdate date not null,
shipaddr1 varchar(80) not null,
shipaddr2 varchar(80) null,
shipcity varchar(80) not null,
shipstate varchar(80) not null,
shipzip varchar(20) not null,
shipcountry varchar(20) not null,
billaddr1 varchar(80) not null,
billaddr2 varchar(80) null,
billcity varchar(80) not null,
billstate varchar(80) not null,
billzip varchar(20) not null,
billcountry varchar(20) not null,
courier varchar(80) not null,
totalprice number(10,2) not null,
billtoname varchar(80) not null,
shiptoname varchar(80) not null,
creditcard varchar(80) not null,
exprdate char(7) not null,
cardtype varchar(80) not null,
locale varchar(20) not null,
constraint pk_orders primary key (orderid),
constraint fk_orders_1 foreign key (userid)
references account (userid)
)
定單的信息。
(2)Orderstatus表
create table orderstatus (
orderid int not null,
linenum int not null,
timestamp date not null,
status char(2) not null,
constraint pk_orderstatus primary key (orderid, linenum),
constraint fk_orderstatus_1 foreign key (orderid)
references orders (orderid)
)
定單中的產品狀態
(3)lineitem表
create table lineitem (
orderid int not null,
linenum int not null,
itemid char(10) not null,
quantity int not null,
unitprice number(10,2) not null,
constraint pk_lineitem primary key (orderid, linenum),
constraint fk_lineitem_1 foreign key (orderid)
references orders (orderid)
)
G. 目前大型的圖片網站,都什麼用哪種資料庫存儲圖片的
你說的大型圖片網站,應該指的只是這個網站的 圖片數量特別多, 但是圖片一般是不存在資料庫的,因為那樣讀寫起來很慢, 大多數是 直接把圖片的 路徑存下來, 據我個人了解, 千萬數量級別的,如果只是查詢 圖片的位置, 而且反復查詢的, 使用sql 會有點慢, 如果使用 oracle 可能會好點.
H. 怎麼在網頁上顯示資料庫里的圖片
如果是本地圖片,要設置src到你本機相對路徑(相對於你網址的home)
I. 購物網站資料庫問題
如果你不想那麼麻煩,可以設計在一張表中,品牌標識欄位。如
create table shoes (
id int not null auto_increment,#自增專id
brand_id int not null,#品牌屬ID
brand_name varchar(30),#品牌名稱
brand_type int,#品牌類型1-耐克,2-ad,3-李寧,4......
size decimal(4,2),#鞋子碼數
)
等等,可以根據實際情況添加欄位
J. 一個購物網站資料庫
我 正好在做一個電子商務的網站 資料庫也基本建好 可以給你看看不過呢我這個電子商務的 資料庫比較簡單 但是 基本的功能 都可以實現了 也只是供參考哈了 你自己看看吧:CREATE table [User] --用戶表
(
Uid int identity(1,1) primary key,--用戶ID
--擁有的 商店 ID號
UName varchar(50),
UPass varchar(100),
UEmail varchar(50),--電子郵件
UTel varchar(50),--電話
UAdress varchar(100),--住址
UPastcode varchar(50),--郵編
UCreatetime datetime, --用戶創建日期
UOnline varchar(50), --用戶在線時間
UState tinyint,--用戶狀態
URemark text --備注信息
)create table Category --產品分類表
(
Cid int identity(1,1) primary key,
Ckindname varchar(100),--分類的名稱
--CParentID int--父分類ID
--CShowOrder int ,--顯示的順序
CRemark text --備注
)create table Proct --產品詳細信息表
(
Pid int identity(1,1) primary key,
Cid int references Category(Cid), --對應 分類表的 主鍵
PName varchar(100),--商品的名稱
PText text,--商品的說明信息
PImage varchar(50),--商品的圖片信息
PPrices money,--商品的價格
Uid int references [User](Uid),--所屬的主人 及用戶表的ID號
PCreatetime datetime,--商品的上架時間
PStock int,--庫存
PsellNum int ,--已經銷售的數量
--PLeaveMessage text,--瀏覽者(用戶)對商品的評價
PViewCount int,--商品被瀏覽的次數
PStatus tinyint,--狀態
PRemark text--備注
)
create table Orders --訂單表
(
OrderID int identity(1,1) primary key, --訂單編號
Uid int foreign key(Uid) references [User](Uid),--這個訂單所屬的主人
--Pid int ,--訂單中商品的信息
OCreatetime datetime,--創建的時間
OTotalNum int,--訂單中商品的總數量
OTotalMoney money,--訂單商品的 總價格
)create table OrdersItem --訂單表關聯信息表
(
OrderItemID int identity(1,1) primary key,
OrderID int references Orders(OrderID),--訂單表的訂單編號
Pid int references Proct(Pid),--關聯的 商品表ID
ONum int,--商品的數量
--OrderItemName varchar(100),--商品的名稱
--OrderItemNum int,--該商品的數量
--OrderItemPrices money,--該商品的單價
)create table ProctLeaveMessage --用戶 瀏覽者對商品的評論表
(
PLid int identity(1,1) primary key,
Pid int references Proct(Pid),--商品表中商品的ID號
Uid int references [User](Uid),--用戶表的用戶ID
IP varchar(50),--如果不是 會員 評論的名稱就是他的IP地址
PLEmail varchar(50),--郵箱地址
PLtime datetime,--評論的時間
PLMessage text,--評論商品的內容
) 希望你能從中 有點啟發 學習愉快!!