亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? pubsdataset2.designer.cs

?? 圖書館管理系統data structure
?? CS
?? 第 1 頁 / 共 4 頁
字號:
        }
        
        [System.Diagnostics.DebuggerNonUserCodeAttribute()]
        private void InitConnection() {
            this._connection = new System.Data.SqlClient.SqlConnection();
            this._connection.ConnectionString = global::圖書館管理系統.Properties.Settings.Default.pubsConnectionString;
        }
        
        [System.Diagnostics.DebuggerNonUserCodeAttribute()]
        private void InitCommandCollection() {
            this._commandCollection = new System.Data.SqlClient.SqlCommand[1];
            this._commandCollection[0] = new System.Data.SqlClient.SqlCommand();
            this._commandCollection[0].Connection = this.Connection;
            this._commandCollection[0].CommandText = "SELECT uid, pid, uname, age, company, islocked FROM dbo.users";
            this._commandCollection[0].CommandType = System.Data.CommandType.Text;
        }
        
        [System.Diagnostics.DebuggerNonUserCodeAttribute()]
        [System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
        [System.ComponentModel.DataObjectMethodAttribute(System.ComponentModel.DataObjectMethodType.Fill, true)]
        public virtual int Fill(pubsDataSet2.usersDataTable dataTable) {
            this.Adapter.SelectCommand = this.CommandCollection[0];
            if ((this.ClearBeforeFill == true)) {
                dataTable.Clear();
            }
            int returnValue = this.Adapter.Fill(dataTable);
            return returnValue;
        }
        
        [System.Diagnostics.DebuggerNonUserCodeAttribute()]
        [System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
        [System.ComponentModel.DataObjectMethodAttribute(System.ComponentModel.DataObjectMethodType.Select, true)]
        public virtual pubsDataSet2.usersDataTable GetData() {
            this.Adapter.SelectCommand = this.CommandCollection[0];
            pubsDataSet2.usersDataTable dataTable = new pubsDataSet2.usersDataTable();
            this.Adapter.Fill(dataTable);
            return dataTable;
        }
        
        [System.Diagnostics.DebuggerNonUserCodeAttribute()]
        [System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
        public virtual int Update(pubsDataSet2.usersDataTable dataTable) {
            return this.Adapter.Update(dataTable);
        }
        
        [System.Diagnostics.DebuggerNonUserCodeAttribute()]
        [System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
        public virtual int Update(pubsDataSet2 dataSet) {
            return this.Adapter.Update(dataSet, "users");
        }
        
        [System.Diagnostics.DebuggerNonUserCodeAttribute()]
        [System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
        public virtual int Update(System.Data.DataRow dataRow) {
            return this.Adapter.Update(new System.Data.DataRow[] {
                        dataRow});
        }
        
        [System.Diagnostics.DebuggerNonUserCodeAttribute()]
        [System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
        public virtual int Update(System.Data.DataRow[] dataRows) {
            return this.Adapter.Update(dataRows);
        }
        
        [System.Diagnostics.DebuggerNonUserCodeAttribute()]
        [System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
        [System.ComponentModel.DataObjectMethodAttribute(System.ComponentModel.DataObjectMethodType.Delete, true)]
        public virtual int Delete(int Original_uid, System.Nullable<int> Original_pid, string Original_uname, System.Nullable<int> Original_age, string Original_company, System.Nullable<int> Original_islocked) {
            this.Adapter.DeleteCommand.Parameters[0].Value = ((int)(Original_uid));
            if ((Original_pid.HasValue == true)) {
                this.Adapter.DeleteCommand.Parameters[1].Value = ((object)(0));
                this.Adapter.DeleteCommand.Parameters[2].Value = ((int)(Original_pid.Value));
            }
            else {
                this.Adapter.DeleteCommand.Parameters[1].Value = ((object)(1));
                this.Adapter.DeleteCommand.Parameters[2].Value = System.DBNull.Value;
            }
            if ((Original_uname == null)) {
                this.Adapter.DeleteCommand.Parameters[3].Value = ((object)(1));
                this.Adapter.DeleteCommand.Parameters[4].Value = System.DBNull.Value;
            }
            else {
                this.Adapter.DeleteCommand.Parameters[3].Value = ((object)(0));
                this.Adapter.DeleteCommand.Parameters[4].Value = ((string)(Original_uname));
            }
            if ((Original_age.HasValue == true)) {
                this.Adapter.DeleteCommand.Parameters[5].Value = ((object)(0));
                this.Adapter.DeleteCommand.Parameters[6].Value = ((int)(Original_age.Value));
            }
            else {
                this.Adapter.DeleteCommand.Parameters[5].Value = ((object)(1));
                this.Adapter.DeleteCommand.Parameters[6].Value = System.DBNull.Value;
            }
            if ((Original_company == null)) {
                this.Adapter.DeleteCommand.Parameters[7].Value = ((object)(1));
                this.Adapter.DeleteCommand.Parameters[8].Value = System.DBNull.Value;
            }
            else {
                this.Adapter.DeleteCommand.Parameters[7].Value = ((object)(0));
                this.Adapter.DeleteCommand.Parameters[8].Value = ((string)(Original_company));
            }
            if ((Original_islocked.HasValue == true)) {
                this.Adapter.DeleteCommand.Parameters[9].Value = ((object)(0));
                this.Adapter.DeleteCommand.Parameters[10].Value = ((int)(Original_islocked.Value));
            }
            else {
                this.Adapter.DeleteCommand.Parameters[9].Value = ((object)(1));
                this.Adapter.DeleteCommand.Parameters[10].Value = System.DBNull.Value;
            }
            System.Data.ConnectionState previousConnectionState = this.Adapter.DeleteCommand.Connection.State;
            if (((this.Adapter.DeleteCommand.Connection.State & System.Data.ConnectionState.Open) 
                        != System.Data.ConnectionState.Open)) {
                this.Adapter.DeleteCommand.Connection.Open();
            }
            try {
                int returnValue = this.Adapter.DeleteCommand.ExecuteNonQuery();
                return returnValue;
            }
            finally {
                if ((previousConnectionState == System.Data.ConnectionState.Closed)) {
                    this.Adapter.DeleteCommand.Connection.Close();
                }
            }
        }
        
        [System.Diagnostics.DebuggerNonUserCodeAttribute()]
        [System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
        [System.ComponentModel.DataObjectMethodAttribute(System.ComponentModel.DataObjectMethodType.Insert, true)]
        public virtual int Insert(System.Nullable<int> pid, string uname, System.Nullable<int> age, string company, System.Nullable<int> islocked) {
            if ((pid.HasValue == true)) {
                this.Adapter.InsertCommand.Parameters[0].Value = ((int)(pid.Value));
            }
            else {
                this.Adapter.InsertCommand.Parameters[0].Value = System.DBNull.Value;
            }
            if ((uname == null)) {
                this.Adapter.InsertCommand.Parameters[1].Value = System.DBNull.Value;
            }
            else {
                this.Adapter.InsertCommand.Parameters[1].Value = ((string)(uname));
            }
            if ((age.HasValue == true)) {
                this.Adapter.InsertCommand.Parameters[2].Value = ((int)(age.Value));
            }
            else {
                this.Adapter.InsertCommand.Parameters[2].Value = System.DBNull.Value;
            }
            if ((company == null)) {
                this.Adapter.InsertCommand.Parameters[3].Value = System.DBNull.Value;
            }
            else {
                this.Adapter.InsertCommand.Parameters[3].Value = ((string)(company));
            }
            if ((islocked.HasValue == true)) {
                this.Adapter.InsertCommand.Parameters[4].Value = ((int)(islocked.Value));
            }
            else {
                this.Adapter.InsertCommand.Parameters[4].Value = System.DBNull.Value;
            }
            System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State;
            if (((this.Adapter.InsertCommand.Connection.State & System.Data.ConnectionState.Open) 
                        != System.Data.ConnectionState.Open)) {
                this.Adapter.InsertCommand.Connection.Open();
            }
            try {
                int returnValue = this.Adapter.InsertCommand.ExecuteNonQuery();
                return returnValue;
            }
            finally {
                if ((previousConnectionState == System.Data.ConnectionState.Closed)) {
                    this.Adapter.InsertCommand.Connection.Close();
                }
            }
        }
        
        [System.Diagnostics.DebuggerNonUserCodeAttribute()]
        [System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
        [System.ComponentModel.DataObjectMethodAttribute(System.ComponentModel.DataObjectMethodType.Update, true)]
        public virtual int Update(System.Nullable<int> pid, string uname, System.Nullable<int> age, string company, System.Nullable<int> islocked, int Original_uid, System.Nullable<int> Original_pid, string Original_uname, System.Nullable<int> Original_age, string Original_company, System.Nullable<int> Original_islocked, int uid) {
            if ((pid.HasValue == true)) {
                this.Adapter.UpdateCommand.Parameters[0].Value = ((int)(pid.Value));
            }
            else {
                this.Adapter.UpdateCommand.Parameters[0].Value = System.DBNull.Value;
            }
            if ((uname == null)) {
                this.Adapter.UpdateCommand.Parameters[1].Value = System.DBNull.Value;
            }
            else {
                this.Adapter.UpdateCommand.Parameters[1].Value = ((string)(uname));
            }
            if ((age.HasValue == true)) {
                this.Adapter.UpdateCommand.Parameters[2].Value = ((int)(age.Value));
            }
            else {
                this.Adapter.UpdateCommand.Parameters[2].Value = System.DBNull.Value;
            }
            if ((company == null)) {
                this.Adapter.UpdateCommand.Parameters[3].Value = System.DBNull.Value;
            }
            else {
                this.Adapter.UpdateCommand.Parameters[3].Value = ((string)(company));
            }
            if ((islocked.HasValue == true)) {
                this.Adapter.UpdateCommand.Parameters[4].Value = ((int)(islocked.Value));
            }
            else {
                this.Adapter.UpdateCommand.Parameters[4].Value = System.DBNull.Value;
            }
            this.Adapter.UpdateCommand.Parameters[5].Value = ((int)(Original_uid));
            if ((Original_pid.HasValue == true)) {
                this.Adapter.UpdateCommand.Parameters[6].Value = ((object)(0));
                this.Adapter.UpdateCommand.Parameters[7].Value = ((int)(Original_pid.Value));
            }
            else {
                this.Adapter.UpdateCommand.Parameters[6].Value = ((object)(1));
                this.Adapter.UpdateCommand.Parameters[7].Value = System.DBNull.Value;
            }
            if ((Original_uname == null)) {
                this.Adapter.UpdateCommand.Parameters[8].Value = ((object)(1));
                this.Adapter.UpdateCommand.Parameters[9].Value = System.DBNull.Value;
            }
            else {
                this.Adapter.UpdateCommand.Parameters[8].Value = ((object)(0));
                this.Adapter.UpdateCommand.Parameters[9].Value = ((string)(Original_uname));
            }
            if ((Original_age.HasValue == true)) {
                this.Adapter.UpdateCommand.Parameters[10].Value = ((object)(0));
                this.Adapter.UpdateCommand.Parameters[11].Value = ((int)(Original_age.Value));
            }
            else {
                this.Adapter.UpdateCommand.Parameters[10].Value = ((object)(1));
                this.Adapter.UpdateCommand.Parameters[11].Value = System.DBNull.Value;
            }
            if ((Original_company == null)) {
                this.Adapter.UpdateCommand.Parameters[12].Value = ((object)(1));
                this.Adapter.UpdateCommand.Parameters[13].Value = System.DBNull.Value;
            }
            else {
                this.Adapter.UpdateCommand.Parameters[12].Value = ((object)(0));
                this.Adapter.UpdateCommand.Parameters[13].Value = ((string)(Original_company));
            }
            if ((Original_islocked.HasValue == true)) {
                this.Adapter.UpdateCommand.Parameters[14].Value = ((object)(0));
                this.Adapter.UpdateCommand.Parameters[15].Value = ((int)(Original_islocked.Value));
            }
            else {
                this.Adapter.UpdateCommand.Parameters[14].Value = ((object)(1));
                this.Adapter.UpdateCommand.Parameters[15].Value = System.DBNull.Value;
            }
            this.Adapter.UpdateCommand.Parameters[16].Value = ((int)(uid));
            System.Data.ConnectionState previousConnectionState = this.Adapter.UpdateCommand.Connection.State;
            if (((this.Adapter.UpdateCommand.Connection.State & System.Data.ConnectionState.Open) 
                        != System.Data.ConnectionState.Open)) {
                this.Adapter.UpdateCommand.Connection.Open();
            }
            try {
                int returnValue = this.Adapter.UpdateCommand.ExecuteNonQuery();
                return returnValue;
            }
            finally {
                if ((previousConnectionState == System.Data.ConnectionState.Closed)) {
                    this.Adapter.UpdateCommand.Connection.Close();
                }
            }
        }
    }
}

#pragma warning restore 1591

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品久久一二三区| 亚洲亚洲精品在线观看| 日韩美女一区二区三区四区| 欧美在线视频你懂得| 在线看国产一区| 欧美丰满嫩嫩电影| 26uuu欧美日本| 亚洲国产精品av| 成人免费在线播放视频| 一区二区三区成人在线视频| 天堂久久久久va久久久久| 日韩综合小视频| 高清国产一区二区| 日本精品一区二区三区高清| 欧美日韩国产小视频在线观看| 欧美日韩国产高清一区二区三区| 91精品国产91久久综合桃花| 久久久久国产精品麻豆ai换脸| 国产精品情趣视频| 麻豆精品国产传媒mv男同| 日韩制服丝袜av| 狠狠色狠狠色合久久伊人| 色综合婷婷久久| 日本一区二区三区电影| 五月激情综合婷婷| 91国偷自产一区二区开放时间| 久久久久亚洲蜜桃| 韩国三级在线一区| 精品国产凹凸成av人导航| 亚洲一区在线观看免费| 欧美最新大片在线看| 亚洲美女淫视频| 色综合久久综合网欧美综合网| 国产精品麻豆99久久久久久| 国产99一区视频免费| 国产精品三级久久久久三级| 高清国产一区二区三区| 成人免费在线视频观看| 欧洲国内综合视频| 日本不卡高清视频| wwwwww.欧美系列| 免费一级欧美片在线观看| 日韩欧美视频一区| 丁香一区二区三区| 自拍偷拍亚洲激情| 制服.丝袜.亚洲.另类.中文| 国精产品一区一区三区mba桃花 | 亚洲欧美国产三级| 欧美亚洲国产bt| 久久99国产精品久久99果冻传媒| 欧美精品一区二区三区久久久| 国产一区二区在线观看视频| 久久久亚洲国产美女国产盗摄| 国产露脸91国语对白| 亚洲品质自拍视频| 日韩一区二区三区精品视频| 国v精品久久久网| 日韩中文字幕1| www久久久久| 国产精品中文字幕日韩精品| 国产精品美女一区二区三区 | 午夜免费欧美电影| 中文字幕av一区 二区| 日韩精品一区二区三区中文不卡| www.日韩在线| 精品亚洲成av人在线观看| 亚洲一级不卡视频| 亚洲欧洲韩国日本视频| 久久久久久久久久久久电影| 欧美日韩国产精品成人| 欧美三级日本三级少妇99| 99久久精品一区| 国产福利一区二区三区视频在线| 另类小说一区二区三区| 亚洲一区在线观看免费| 一区二区三区中文字幕精品精品| 国产精品美日韩| 亚洲丝袜美腿综合| 中文字幕在线不卡一区二区三区 | 成人午夜av电影| 国产v日产∨综合v精品视频| 国产91高潮流白浆在线麻豆| 国产一区二区网址| 成人精品免费网站| 丁香网亚洲国际| 97精品国产97久久久久久久久久久久| 国产乱码精品一区二区三区av | 中文字幕在线不卡国产视频| 日韩伦理电影网| 天天操天天干天天综合网| 日韩国产精品大片| 国产黄色成人av| 在线视频欧美区| 精品成a人在线观看| 国产区在线观看成人精品| 亚洲欧美在线视频观看| 丝袜诱惑制服诱惑色一区在线观看| 亚洲妇女屁股眼交7| 极品瑜伽女神91| 亚洲高清视频的网址| 成人在线综合网站| 蜜桃久久av一区| 午夜精品爽啪视频| 美女网站色91| 色综合久久久久综合99| 日韩精品中文字幕在线不卡尤物| 国产亚洲精品免费| 美女视频黄 久久| jlzzjlzz欧美大全| 精品国产91久久久久久久妲己| 久久久99精品久久| 青青国产91久久久久久| 91同城在线观看| 日本一区二区高清| 久久99精品一区二区三区三区| 91在线观看污| 久久精品无码一区二区三区| 久久99精品国产91久久来源| 91麻豆精品视频| 欧美激情中文字幕一区二区| 国产一区欧美日韩| 日韩视频免费观看高清完整版| 一区二区在线看| 日韩欧美视频一区| 久久99热国产| 精品毛片乱码1区2区3区| 九色综合狠狠综合久久| 日韩欧美中文字幕精品| 乱中年女人伦av一区二区| 日韩欧美专区在线| 丁香网亚洲国际| **网站欧美大片在线观看| 91老司机福利 在线| 午夜国产精品一区| 欧美一级片在线| 99久久99精品久久久久久 | 中文字幕人成不卡一区| 91蜜桃在线观看| 午夜精品福利一区二区蜜股av| 日韩丝袜美女视频| 色综合久久99| 奇米综合一区二区三区精品视频| 欧美va亚洲va| 91黄视频在线观看| 国产一区二区不卡| 亚洲精品伦理在线| 久久综合九色综合97婷婷女人| 9l国产精品久久久久麻豆| 日韩精品亚洲专区| 亚洲欧美日韩精品久久久久| 欧美一区二区网站| 色婷婷精品久久二区二区蜜臀av| 亚洲欧洲日韩女同| 日韩欧美一级片| 一本大道久久a久久综合| 久久99九九99精品| 亚洲成人在线免费| 亚洲精品免费在线观看| 久久精品亚洲国产奇米99| 日韩欧美一级在线播放| 88在线观看91蜜桃国自产| 91丨porny丨在线| 99久久综合国产精品| 大尺度一区二区| 国产寡妇亲子伦一区二区| 韩国av一区二区三区| 免费高清成人在线| 美女视频一区在线观看| 日韩有码一区二区三区| 日本中文字幕不卡| 蜜桃久久久久久久| 国产成人8x视频一区二区| 国产专区欧美精品| 国产激情视频一区二区三区欧美 | 卡一卡二国产精品| 久草在线在线精品观看| 国产在线麻豆精品观看| 国产毛片精品一区| 99麻豆久久久国产精品免费优播| 成人黄色小视频| 在线观看亚洲成人| 欧美丰满高潮xxxx喷水动漫| 欧美大白屁股肥臀xxxxxx| 26uuu国产一区二区三区| 国产精品乱码久久久久久| 亚洲一区在线免费观看| 亚洲中国最大av网站| 蜜桃一区二区三区四区| 暴力调教一区二区三区| 欧美剧在线免费观看网站| 亚洲另类在线一区| 狠狠狠色丁香婷婷综合激情| 成人av资源站| 精品国产乱码久久久久久夜甘婷婷 | 精品视频免费看| 国产三区在线成人av| 亚欧色一区w666天堂| 风间由美一区二区av101| 制服.丝袜.亚洲.另类.中文 | 亚洲自拍偷拍欧美|