【正文】
對在百忙之中評閱論文和參加答辯的各位專家老師表示誠摯的謝意Vikram Vaswani MySQL完全手冊 北京電子工業(yè)出版社200411Paul DuBois MySQL權威指南北京機械工程出版社2004楊冬青唐世渭機械工業(yè)出版社2001薩師煊高等教育出版社2002Thomas Connolly Carolyn Begg 數(shù)據(jù)庫系統(tǒng)設計實現(xiàn)與管理北京電子工業(yè)出版社2004王軍鵬劉路放基于統(tǒng)一建模語言的關系數(shù)據(jù)庫模型設計現(xiàn)代計算機200111618Jacob Kohler Matthias Lange Ralf Hofestadt Steffen SchulzeKremer Logical and Semantic Database Integration 2000Ali Bazghandi Web Database Connectivity Methods using Mysql in Windows Platform 2006王珊 網(wǎng)絡與數(shù)據(jù)庫 北京中國人民大學信息學院1997Eriki Eessaar On PatternBased Database Design and Implementation Department of Informatics Tallinn University of Technology 2008Alan Y S Chiang Dickson K W Chiu Senior Member IEEE Patrick C K Hung and Yi Zheng Providing More Customized Services for Online Games Using Service Oriented Architecture and ThreeTier Views A Case Study Mankind 2007ShiJim Yen TaiNing Yang JrChang Chen ShunChin Hsu Pattern Matching in Go Game Records 2007MySQL C API的例子 cjbsklogs338428726htmlXXX大學本科學生畢業(yè)設計論文 中文摘要IXXX大學本科學生畢業(yè)設計論文 目錄II重慶大學本科學生畢業(yè)設計論文 目錄III重慶大學本科學生畢業(yè)設計論文 1 緒論382 系統(tǒng)需求分析重慶大學本科學生畢業(yè)設計論文 3 系統(tǒng)設計 4 系統(tǒng)難點技術分析與設計大學本科學生畢業(yè)設計 5 系統(tǒng)重慶大學本科學生畢業(yè)設計 6 工作總結重慶大學本科學生畢業(yè)設計論文 致謝重慶大學本科學生畢業(yè)設計論文 參考文獻CREATE DATABASE oceanCREATE TABLE account AccountId int 10 unsigned NOT NULL auto_increment UserName varchar 45 character set latin1 NOT NULL Password varchar 45 character set latin1 NOT NULL Experience int 10 unsigned NOT NULL Money int 10 unsigned NOT NULL Level int 10 unsigned NOT NULL CurShipAccessId int 10 unsigned NOT NULL PRIMARY KEY AccountId ENGINE InnoDB AUTO_INCREMENT 16 DEFAULT CHARSET utf8Data base on mysqlCREATE TABLE gift GiftId int 10 unsigned NOT NULL auto_increment AccountId int 10 unsigned NOT NULL ThingType int 10 unsigned NOT NULL AccessId int 10 unsigned NOT NULL Benefator varchar 45 NOT NULL DescText varchar 45 NOT NULL PRIMARY KEY GiftId ENGINE InnoDB AUTO_INCREMENT 11 DEFAULT CHARSET utf8CREATE TABLE hsgcverifycode HSGCVerifyCodeId int 10 unsigned NOT NULL auto_increment AccountId int 10 unsigned NOT NULL VerifyCode int 10 unsigned NOT NULL PRIMARY KEY HSGCVerifyCodeId ENGINE InnoDB AUTO_INCREMENT 8 DEFAULT CHARSET latin1CREATE TABLE thing ThingId int 10 unsigned NOT NULL auto_increment AccountId int 10 unsigned NOT NULL ThingType int 10 unsigned NOT NULL bBind int 10 unsigned NOT NULL bInstalled int 10 unsigned NOT NULL ActiveTime int 10 unsigned NOT NULL AccessId int 10 unsigned NOT NULL ShipAccessId int 10 unsigned NOT NULL EmplaceIndex int 10 unsigned NOT NULL PRIMARY KEY ThingId ENGINE InnoDB AUTO_INCREMENT 67 DEFAULT CHARSET latin1USE ocean