上傳原始碼
qpproxydb---主管**
qpproxydb--bs_proxylnfo **後台賬號密碼修改
qpproxydb---bs_payorders 實卡充值資料庫表
qpplatformdb---gameroominfo 機器碼修改 (後台:系統維護---房間管理)修改
qpplatformdb---gamegamettem 字遊戲修改
qpplatformdb---gamenodeitem 刪除字遊戲、修改遊戲順序
qpplatformmanagerdb---base_users 後台賬號修改
qpplatformmanagerdb---base_module頁面位址資料庫
qpaccountsdb---accountsinfo 機械人表
qpaccountsdb---recorduserlogon 登入ip
qpaccountsdb---systemstatusinfo 註冊資訊修改
qpaccountsdb---confineconttent (後台:遊戲使用者---限制使用者名稱)
qptreasuredb---onlineorder 訂單號存放表
qptreasuredb---sharedetailinfo 使用者充值紀錄表
qptreasuredb---globalshareinfo 充值型別的表
qpnativewebdb ----後台:**系統
遊戲:百人牛牛:型別標識1013 資料庫qptreasuredb 服務元件名oxbattleserver.dll 客戶端程序oxbattle.exe 掛載節點113
修改客戶端主要有3個檔案
e:\客戶端\pc\jiulongyule_data\managed \assembly-csharp.dll
e:\客戶端\pc\jiulongyule_data\streamingassets\windows\logo.pc
頁面修改
公告: /referencepage/notice.aspx
充值: /mobilerechargecenter/default.aspx
排行: /referencepage/scoreranking.aspx
轉盤: /referencepage/luckdraw.aspx
資料庫學習記錄
基本概念 主鍵有2種主鍵的存在。一種是業務主鍵,一種是邏輯主鍵 業務主鍵通常是表裡有的資料作為主鍵使用。一般常見的就是不容易重複的資料,例如 身份證號等 邏輯主鍵就是本來一條資料沒有這個字段,但是我們擔心會出現重複資料,我們自己生成乙個讓此條資料成為唯一的重要字段,在一張表裡很明顯的主鍵建立方式是乙...
資料庫記錄處理
新建乙個表 名字為t3,屬性id為 int型別 主鍵,給自增,name 為 varchar型別 非空約束 age int 型別,int型別,非空屬性 create table t3 id int primary key auto increment,name varchar 20 not null,...
資料庫操作記錄
1,檢視資料庫操作記錄 select t.sql text,t.first load time from v sqlarea t where t.first load time like 2012 12 and sql text like delete order by t.first load t...