freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

計算機學(xué)院圖書管理系統(tǒng)—免費畢業(yè)設(shè)計論文(編輯修改稿)

2025-01-07 02:49 本頁面
 

【文章內(nèi)容簡介】 段名稱 數(shù)據(jù)類型 說明 id 自動編號 主鍵 classname 文本 圖書分類名稱 ( 3)圖書表 表 43 Books 字段名稱 數(shù)據(jù)類型 說明 bookno 自動編號 主鍵 sortno 數(shù)字 圖書分類號 title 文本 圖書名字 author 文本 圖書作者 price 貨幣 圖書價格 number 數(shù)字 圖書數(shù)量 ( 4) 用戶表 表 44 Borrowers 字段名稱 數(shù)據(jù)類型 說明 cardno 自動編號 主鍵 name 文本 用戶名字 passwd 文本 用戶密碼 sex 文本 用戶性別 dept 文本 所屬院系 loannum 數(shù)字 已借書數(shù)量 lock 是 /否 是否鎖定 ( 5)系統(tǒng)配置表 表 45 config 字段名稱 數(shù)據(jù)類型 說明 id 自動編號 主鍵 maxLoanNumber 數(shù)字 最大借閱數(shù)量 maxLoanKeepDays 數(shù)字 最長借閱時間 systemname 文本 系統(tǒng)名稱 copyright 文本 版權(quán)信息 ( 6) 圖書借出表 表 46 Loans 字段名稱 數(shù)據(jù)類型 說明 id 自動編號 主鍵 cardno 數(shù)字 借書卡號 bookno 數(shù)字 書號 title 文本 圖書名字 date 日期 /時間 借書日期 ( 7)系統(tǒng)日志表 表 47 log 字段名稱 數(shù)據(jù)類型 說明 id 自動編號 主鍵 userright 文本 用戶類型 username 文本 用戶名字 action 文本 事件 date 文本 時間 ip 文本 ip 地址 ( 8)短信息表 表 48 message 字段名稱 數(shù)據(jù)類型 說明 id 自動編號 主鍵 fromuserid 數(shù)字 發(fā)信人的卡號 fromusername 文本 發(fā)信人的名字 touserid 數(shù)字 收信人的卡號 tousername 文本 收信人名字 createtime 日期 /時間 發(fā)送時間 isread 數(shù)字 是否已閱讀 isreply 數(shù)字 是否已回復(fù) content 文本 信息內(nèi)容 5 系統(tǒng) 的實現(xiàn) 為了保證 本系統(tǒng) 運行的效率和可靠性,服務(wù)器應(yīng)具有較高的軟硬件配 置,客戶端的要求不是很高。此應(yīng)用程序可廣泛運行于國際互聯(lián)網(wǎng)即 Inter,也可適用于內(nèi)部的局域網(wǎng)。 其運行要求如下: 軟件環(huán)境: 客戶端: Windows98/2021/XP, Inter Explorer(IE)等 。 服務(wù)器端: Windows NT/Windows2021, Inter Information Server (IIS) 及其以上版本, IE 等;或者 Windows98, Personal Web Server(PWS),IE等。 數(shù)據(jù)庫:采用 Access2021,運行于服務(wù)器端。 數(shù)據(jù)庫的連接 在整個計算機學(xué)院圖書管理系統(tǒng)中,數(shù)據(jù)庫的連接是非常重要的,如果連接不對將無法運行系統(tǒng),下面是本系統(tǒng)的連接打開數(shù)據(jù)庫的代碼文件 : % Dim MM_conn_STRING Dim isDebug isDebug = false if isDebug = true then MM_conn_STRING = dsn=library。 else MM_conn_STRING=DBQ=+(data/)+。DefaultDir=。DRIVER={Microsoft Access Driver (*.mdb)}。 end if % 系統(tǒng)的登錄頁面 本系統(tǒng)分為二種登錄模式如圖 51: ( 1) 管理員登錄。 ( 2) 用戶登錄。 圖 51 系統(tǒng)的安全性 系統(tǒng)是用 ASP 網(wǎng)頁編程 +ACCESS 數(shù)據(jù)庫 +SQL 查詢語句 , 系統(tǒng)中擁有的用戶名和密碼才能正常進入系統(tǒng), 以下給出部分代碼提供參考: If (CStr(Request(MM_login)) ) Then If Request(userright)=user AND isNumeric(Request(cardno))=false Then freshTo 用戶名不存在或密碼不正確!請重新登陸系統(tǒng)!, End If If Request(userright)=user Then sql = SELECT cardno,name,lock FROM Borrowers WHERE sql = sql amp。 cardno= amp。 Replace((cardno), 39。, 39。39。) sql = sql amp。 AND passwd=39。 amp。 md5((passwd), 16) amp。 39。 Else sql = SELECT * FROM admin WHERE sql = sql amp。 name=39。 amp。 Replace((cardno), 39。, 39。39。) amp。 39。 sql = sql amp。 AND passwd=39。 amp。 md5((passwd), 16) amp。 39。 End If Set rs=executeQuery(sql) If Not Or Not Then If Request(userright)=user Then If rs(lock)=true Then addLog user,rs(name)amp。(amp。rs(cardno)amp。),登陸系統(tǒng)失敗,因為帳號被鎖定。 freshTo 用戶名已被管理員鎖定!請速與管理員聯(lián)系!, End If Session(userright)=user Session(cardno)=CINT(rs(cardno)) Session(username)=rs(name) addLog ,用戶登陸系統(tǒng) () Else Session(userright)=admin Session(userid)=rs(id) Session(username)=rs(name) addLog ,用戶登陸系統(tǒng) () End If 以上代碼判斷輸入的卡號和密碼是否正確,正確就跳轉(zhuǎn)到 頁面,錯誤則返回登錄。如果用戶被鎖定也無 法進入系統(tǒng),需要管理員解鎖才能進入。 判斷用戶是否是從登錄頁面進入系統(tǒng)的 代碼如下: If Session(userright)userright AND Session(userright)admin Then showMsg(對不起,您還沒有登錄,或沒有足夠的權(quán)限,無法進行此操作。 ) End If 計算機學(xué)院圖書管理系統(tǒng) 摘 要 計算機信息化管理有著儲存量大,速度快等許多優(yōu)點,提供給我們的處理信息及時快捷。圖書管理系統(tǒng)是指應(yīng)用電子計算機和網(wǎng)絡(luò)通信設(shè)備,為圖書 館 及其所 屬各部門提供圖書信息、圖書文獻信息檢索、圖書管理過程中圖書信息的收集、存儲、處理、提取和數(shù)據(jù)通訊的能力,并能滿足所有授權(quán)用戶對信息的各種功能需求的計算機應(yīng)用。 本文對圖書管理系統(tǒng)國內(nèi)外研究現(xiàn)狀進行分析;闡述了 ASP技術(shù)和 Access數(shù)據(jù)庫技術(shù),并對計算機學(xué)院圖書系統(tǒng)總體流程,系統(tǒng)的功能,圖書管理系統(tǒng)的數(shù)據(jù)庫設(shè)計進行了相關(guān)的描述。采用 ASP和 B/S為結(jié)構(gòu)實現(xiàn)了計算機學(xué)院 圖書管理系統(tǒng) ,其功能主要 圖書的添加、查詢、瀏覽、刪除和修改管理以及相關(guān)的圖書用戶的管理,這樣可以方便圖書管理員對龐大信息進行管理 。 關(guān)鍵詞 : 圖書管理系統(tǒng) ; ASP; Access2021; 數(shù)據(jù)庫 Design and Implementation of Computer College Library Management System Abstract Computer Information Management has storage capacity, speed and many other advantages to provide our processing information quickly. The library management system is a application of puters with the electronic puter and work munication equipment, which provides books’ information for the library and each department. It can provide information access and information services for users. The library management system has capability of collecting books information, saving data and processing data and extracting data. This paper analyses the current situation and development trend of the library management system. An explanation of ASP and Access database technology are introduced. The general flowchart of the system designing plan and describes the system functions are described. In this paper, the library management system is implemented based on B/S structure. The functions of library management system include books to add, query, browse, delete and modify the related management the management of library users. This will facilitate the librarian of the huge information management. Key words: Library management system。 ASP。Access2021。 Database 目 錄 論文總頁數(shù): 20頁 1 引言 ................................................................... 1 課題背景和意義 ....................................................... 1 國內(nèi)外研究現(xiàn)狀 ....................................................... 1 本課題的研究方法 ..................................................... 2 2 系統(tǒng)技術(shù)以及運行環(huán)境 .................................................... 2 ASP技術(shù)簡介 .......................................................... 2 ACCESS 2021 技術(shù)簡介 ................................................. 4 SQL語句簡介 .......................................................... 4 SQL 語句介紹 ...................................................... 4 SQL的優(yōu)點 ........................................................ 4 IIS簡介 ............................................................. 5 IIS的安裝 ....................................................... 5 IIS虛擬目錄的創(chuàng)建 ................................................ 5 IIS的日常管理 ..............
點擊復(fù)制文檔內(nèi)容
公司管理相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖片鄂ICP備17016276號-1