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

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

?? readerinfo.cs

?? 圖書館管理系統采用C#和SQL Server 數據庫編寫 適合小型圖書館的管理
?? CS
?? 第 1 頁 / 共 4 頁
字號:
			this.groupBox1.Controls.Add(this.txt3);
			this.groupBox1.Location = new System.Drawing.Point(0, 48);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Size = new System.Drawing.Size(696, 56);
			this.groupBox1.TabIndex = 32;
			this.groupBox1.TabStop = false;
			// 
			// btnSearch
			// 
			this.btnSearch.Image = ((System.Drawing.Image)(resources.GetObject("btnSearch.Image")));
			this.btnSearch.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.btnSearch.Location = new System.Drawing.Point(16, 24);
			this.btnSearch.Name = "btnSearch";
			this.btnSearch.Size = new System.Drawing.Size(72, 23);
			this.btnSearch.TabIndex = 0;
			this.btnSearch.Text = " 搜索";
			this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
			// 
			// txt1
			// 
			this.txt1.Location = new System.Drawing.Point(168, 24);
			this.txt1.Name = "txt1";
			this.txt1.TabIndex = 2;
			this.txt1.Text = "";
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(104, 28);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(56, 16);
			this.label2.TabIndex = 1;
			this.label2.Text = "條形碼";
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(328, 28);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(32, 16);
			this.label1.TabIndex = 1;
			this.label1.Text = "編號";
			// 
			// txt2
			// 
			this.txt2.Location = new System.Drawing.Point(360, 24);
			this.txt2.Name = "txt2";
			this.txt2.TabIndex = 2;
			this.txt2.Text = "";
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(520, 28);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(32, 16);
			this.label3.TabIndex = 1;
			this.label3.Text = "姓名";
			// 
			// txt3
			// 
			this.txt3.Location = new System.Drawing.Point(552, 24);
			this.txt3.Name = "txt3";
			this.txt3.TabIndex = 2;
			this.txt3.Text = "";
			// 
			// dataGrid1
			// 
			this.dataGrid1.CaptionVisible = false;
			this.dataGrid1.DataMember = "讀者信息";
			this.dataGrid1.DataSource = this.dataSet11;
			this.dataGrid1.HeaderForeColor = System.Drawing.SystemColors.ControlText;
			this.dataGrid1.Location = new System.Drawing.Point(0, 104);
			this.dataGrid1.Name = "dataGrid1";
			this.dataGrid1.ReadOnly = true;
			this.dataGrid1.Size = new System.Drawing.Size(696, 216);
			this.dataGrid1.TabIndex = 34;
			// 
			// dataSet11
			// 
			this.dataSet11.DataSetName = "DataSet1";
			this.dataSet11.Locale = new System.Globalization.CultureInfo("zh-CN");
			// 
			// da1
			// 
			this.da1.DeleteCommand = this.sqlDeleteCommand1;
			this.da1.InsertCommand = this.sqlInsertCommand1;
			this.da1.SelectCommand = this.sqlSelectCommand1;
			this.da1.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
																						  new System.Data.Common.DataTableMapping("Table", "讀者信息", new System.Data.Common.DataColumnMapping[] {
																																																  new System.Data.Common.DataColumnMapping("條形碼", "條形碼"),
																																																  new System.Data.Common.DataColumnMapping("編號", "編號"),
																																																  new System.Data.Common.DataColumnMapping("姓名", "姓名"),
																																																  new System.Data.Common.DataColumnMapping("性別", "性別"),
																																																  new System.Data.Common.DataColumnMapping("類型", "類型"),
																																																  new System.Data.Common.DataColumnMapping("出生日期", "出生日期"),
																																																  new System.Data.Common.DataColumnMapping("有效證件", "有效證件"),
																																																  new System.Data.Common.DataColumnMapping("證件號碼", "證件號碼"),
																																																  new System.Data.Common.DataColumnMapping("聯系方式", "聯系方式"),
																																																  new System.Data.Common.DataColumnMapping("登記日期", "登記日期"),
																																																  new System.Data.Common.DataColumnMapping("有限期至", "有限期至"),
																																																  new System.Data.Common.DataColumnMapping("操作員", "操作員"),
																																																  new System.Data.Common.DataColumnMapping("備注", "備注"),
																																																  new System.Data.Common.DataColumnMapping("圖書借閱次數", "圖書借閱次數"),
																																																  new System.Data.Common.DataColumnMapping("期刊借閱次數", "期刊借閱次數"),
																																																  new System.Data.Common.DataColumnMapping("是否掛失", "是否掛失")})});
			this.da1.UpdateCommand = this.sqlUpdateCommand1;
			// 
			// sqlDeleteCommand1
			// 
			this.sqlDeleteCommand1.CommandText = @"DELETE FROM 讀者信息 WHERE (編號 = @Original_編號) AND (出生日期 = @Original_出生日期 OR @Original_出生日期 IS NULL AND 出生日期 IS NULL) AND (圖書借閱次數 = @Original_圖書借閱次數 OR @Original_圖書借閱次數 IS NULL AND 圖書借閱次數 IS NULL) AND (備注 = @Original_備注 OR @Original_備注 IS NULL AND 備注 IS NULL) AND (姓名 = @Original_姓名 OR @Original_姓名 IS NULL AND 姓名 IS NULL) AND (性別 = @Original_性別 OR @Original_性別 IS NULL AND 性別 IS NULL) AND (操作員 = @Original_操作員 OR @Original_操作員 IS NULL AND 操作員 IS NULL) AND (是否掛失 = @Original_是否掛失) AND (有效證件 = @Original_有效證件 OR @Original_有效證件 IS NULL AND 有效證件 IS NULL) AND (有限期至 = @Original_有限期至 OR @Original_有限期至 IS NULL AND 有限期至 IS NULL) AND (期刊借閱次數 = @Original_期刊借閱次數 OR @Original_期刊借閱次數 IS NULL AND 期刊借閱次數 IS NULL) AND (條形碼 = @Original_條形碼 OR @Original_條形碼 IS NULL AND 條形碼 IS NULL) AND (登記日期 = @Original_登記日期 OR @Original_登記日期 IS NULL AND 登記日期 IS NULL) AND (類型 = @Original_類型) AND (聯系方式 = @Original_聯系方式 OR @Original_聯系方式 IS NULL AND 聯系方式 IS NULL) AND (證件號碼 = @Original_證件號碼 OR @Original_證件號碼 IS NULL AND 證件號碼 IS NULL)";
			this.sqlDeleteCommand1.Connection = this.sqlConnection1;
			this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_編號", System.Data.SqlDbType.VarChar, 20, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "編號", System.Data.DataRowVersion.Original, null));
			this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_出生日期", System.Data.SqlDbType.DateTime, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "出生日期", System.Data.DataRowVersion.Original, null));
			this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_圖書借閱次數", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "圖書借閱次數", System.Data.DataRowVersion.Original, null));
			this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_備注", System.Data.SqlDbType.VarChar, 100, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "備注", System.Data.DataRowVersion.Original, null));
			this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_姓名", System.Data.SqlDbType.VarChar, 20, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "姓名", System.Data.DataRowVersion.Original, null));
			this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_性別", System.Data.SqlDbType.VarChar, 8, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "性別", System.Data.DataRowVersion.Original, null));
			this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_操作員", System.Data.SqlDbType.VarChar, 20, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "操作員", System.Data.DataRowVersion.Original, null));
			this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_是否掛失", System.Data.SqlDbType.Bit, 1, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "是否掛失", System.Data.DataRowVersion.Original, null));
			this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_有效證件", System.Data.SqlDbType.VarChar, 60, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "有效證件", System.Data.DataRowVersion.Original, null));
			this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_有限期至", System.Data.SqlDbType.DateTime, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "有限期至", System.Data.DataRowVersion.Original, null));
			this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_期刊借閱次數", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "期刊借閱次數", System.Data.DataRowVersion.Original, null));
			this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_條形碼", System.Data.SqlDbType.VarChar, 40, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "條形碼", System.Data.DataRowVersion.Original, null));
			this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_登記日期", System.Data.SqlDbType.DateTime, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "登記日期", System.Data.DataRowVersion.Original, null));
			this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_類型", System.Data.SqlDbType.VarChar, 20, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "類型", System.Data.DataRowVersion.Original, null));
			this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_聯系方式", System.Data.SqlDbType.VarChar, 100, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "聯系方式", System.Data.DataRowVersion.Original, null));
			this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_證件號碼", System.Data.SqlDbType.VarChar, 60, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "證件號碼", System.Data.DataRowVersion.Original, null));
			// 
			// sqlConnection1
			// 
			this.sqlConnection1.ConnectionString = "workstation id=localhost;Integrated Security=SSPI;Database=libbook;";
			// 
			// sqlInsertCommand1
			// 
			this.sqlInsertCommand1.CommandText = @"INSERT INTO 讀者信息(條形碼, 編號, 姓名, 性別, 類型, 出生日期, 有效證件, 證件號碼, 聯系方式, 登記日期, 有限期至, 操作員, 備注, 圖書借閱次數, 期刊借閱次數, 是否掛失) VALUES (@條形碼, @編號, @姓名, @性別, @類型, @出生日期, @有效證件, @證件號碼, @聯系方式, @登記日期, @有限期至, @操作員, @備注, @圖書借閱次數, @期刊借閱次數, @是否掛失); SELECT 條形碼, 編號, 姓名, 性別, 類型, 出生日期, 有效證件, 證件號碼, 聯系方式, 登記日期, 有限期至, 操作員, 備注, 圖書借閱次數, 期刊借閱次數, 是否掛失 FROM 讀者信息 WHERE (編號 = @編號)";
			this.sqlInsertCommand1.Connection = this.sqlConnection1;
			this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@條形碼", System.Data.SqlDbType.VarChar, 40, "條形碼"));
			this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@編號", System.Data.SqlDbType.VarChar, 20, "編號"));
			this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@姓名", System.Data.SqlDbType.VarChar, 20, "姓名"));
			this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@性別", System.Data.SqlDbType.VarChar, 8, "性別"));
			this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@類型", System.Data.SqlDbType.VarChar, 20, "類型"));
			this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@出生日期", System.Data.SqlDbType.DateTime, 4, "出生日期"));
			this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@有效證件", System.Data.SqlDbType.VarChar, 60, "有效證件"));
			this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@證件號碼", System.Data.SqlDbType.VarChar, 60, "證件號碼"));
			this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@聯系方式", System.Data.SqlDbType.VarChar, 100, "聯系方式"));
			this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@登記日期", System.Data.SqlDbType.DateTime, 4, "登記日期"));
			this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@有限期至", System.Data.SqlDbType.DateTime, 4, "有限期至"));
			this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@操作員", System.Data.SqlDbType.VarChar, 20, "操作員"));
			this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@備注", System.Data.SqlDbType.VarChar, 100, "備注"));
			this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@圖書借閱次數", System.Data.SqlDbType.Int, 4, "圖書借閱次數"));
			this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@期刊借閱次數", System.Data.SqlDbType.Int, 4, "期刊借閱次數"));
			this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@是否掛失", System.Data.SqlDbType.Bit, 1, "是否掛失"));
			// 
			// sqlSelectCommand1
			// 
			this.sqlSelectCommand1.CommandText = "SELECT 條形碼, 編號, 姓名, 性別, 類型, 出生日期, 有效證件, 證件號碼, 聯系方式, 登記日期, 有限期至, 操作員, 備注, 圖書借閱次數, " +
				"期刊借閱次數, 是否掛失 FROM 讀者信息 WHERE (條形碼 LIKE @Param4) AND (編號 LIKE @Param5) AND (姓名 LI" +
				"KE @Param6)";
			this.sqlSelectCommand1.Connection = this.sqlConnection1;
			this.sqlSelectCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Param4", System.Data.SqlDbType.VarChar, 40, "條形碼"));
			this.sqlSelectCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Param5", System.Data.SqlDbType.VarChar, 20, "編號"));
			this.sqlSelectCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Param6", System.Data.SqlDbType.VarChar, 20, "姓名"));
			// 
			// sqlUpdateCommand1
			// 
			this.sqlUpdateCommand1.CommandText = @"UPDATE 讀者信息 SET 條形碼 = @條形碼, 編號 = @編號, 姓名 = @姓名, 性別 = @性別, 類型 = @類型, 出生日期 = @出生日期, 有效證件 = @有效證件, 證件號碼 = @證件號碼, 聯系方式 = @聯系方式, 登記日期 = @登記日期, 有限期至 = @有限期至, 操作員 = @操作員, 備注 = @備注, 圖書借閱次數 = @圖書借閱次數, 期刊借閱次數 = @期刊借閱次數, 是否掛失 = @是否掛失 WHERE (編號 = @Original_編號) AND (出生日期 = @Original_出生日期 OR @Original_出生日期 IS NULL AND 出生日期 IS NULL) AND (圖書借閱次數 = @Original_圖書借閱次數 OR @Original_圖書借閱次數 IS NULL AND 圖書借閱次數 IS NULL) AND (備注 = @Original_備注 OR @Original_備注 IS NULL AND 備注 IS NULL) AND (姓名 = @Original_姓名 OR @Original_姓名 IS NULL AND 姓名 IS NULL) AND (性別 = @Original_性別 OR @Original_性別 IS NULL AND 性別 IS NULL) AND (操作員 = @Original_操作員 OR @Original_操作員 IS NULL AND 操作員 IS NULL) AND (是否掛失 = @Original_是否掛失) AND (有效證件 = @Original_有效證件 OR @Original_有效證件 IS NULL AND 有效證件 IS NULL) AND (有限期至 = @Original_有限期至 OR @Original_有限期至 IS NULL AND 有限期至 IS NULL) AND (期刊借閱次數 = @Original_期刊借閱次數 OR @Original_期刊借閱次數 IS NULL AND 期刊借閱次數 IS NULL) AND (條形碼 = @Original_條形碼 OR @Original_條形碼 IS NULL AND 條形碼 IS NULL) AND (登記日期 = @Original_登記日期 OR @Original_登記日期 IS NULL AND 登記日期 IS NULL) AND (類型 = @Original_類型) AND (聯系方式 = @Original_聯系方式 OR @Original_聯系方式 IS NULL AND 聯系方式 IS NULL) AND (證件號碼 = @Original_證件號碼 OR @Original_證件號碼 IS NULL AND 證件號碼 IS NULL); SELECT 條形碼, 編號, 姓名, 性別, 類型, 出生日期, 有效證件, 證件號碼, 聯系方式, 登記日期, 有限期至, 操作員, 備注, 圖書借閱次數, 期刊借閱次數, 是否掛失 FROM 讀者信息 WHERE (編號 = @編號)";
			this.sqlUpdateCommand1.Connection = this.sqlConnection1;
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@條形碼", System.Data.SqlDbType.VarChar, 40, "條形碼"));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@編號", System.Data.SqlDbType.VarChar, 20, "編號"));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@姓名", System.Data.SqlDbType.VarChar, 20, "姓名"));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@性別", System.Data.SqlDbType.VarChar, 8, "性別"));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@類型", System.Data.SqlDbType.VarChar, 20, "類型"));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@出生日期", System.Data.SqlDbType.DateTime, 4, "出生日期"));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@有效證件", System.Data.SqlDbType.VarChar, 60, "有效證件"));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@證件號碼", System.Data.SqlDbType.VarChar, 60, "證件號碼"));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@聯系方式", System.Data.SqlDbType.VarChar, 100, "聯系方式"));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@登記日期", System.Data.SqlDbType.DateTime, 4, "登記日期"));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@有限期至", System.Data.SqlDbType.DateTime, 4, "有限期至"));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@操作員", System.Data.SqlDbType.VarChar, 20, "操作員"));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@備注", System.Data.SqlDbType.VarChar, 100, "備注"));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@圖書借閱次數", System.Data.SqlDbType.Int, 4, "圖書借閱次數"));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@期刊借閱次數", System.Data.SqlDbType.Int, 4, "期刊借閱次數"));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@是否掛失", System.Data.SqlDbType.Bit, 1, "是否掛失"));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_編號", System.Data.SqlDbType.VarChar, 20, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "編號", System.Data.DataRowVersion.Original, null));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_出生日期", System.Data.SqlDbType.DateTime, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "出生日期", System.Data.DataRowVersion.Original, null));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_圖書借閱次數", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "圖書借閱次數", System.Data.DataRowVersion.Original, null));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_備注", System.Data.SqlDbType.VarChar, 100, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "備注", System.Data.DataRowVersion.Original, null));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_姓名", System.Data.SqlDbType.VarChar, 20, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "姓名", System.Data.DataRowVersion.Original, null));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_性別", System.Data.SqlDbType.VarChar, 8, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "性別", System.Data.DataRowVersion.Original, null));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_操作員", System.Data.SqlDbType.VarChar, 20, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "操作員", System.Data.DataRowVersion.Original, null));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_是否掛失", System.Data.SqlDbType.Bit, 1, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "是否掛失", System.Data.DataRowVersion.Original, null));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_有效證件", System.Data.SqlDbType.VarChar, 60, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "有效證件", System.Data.DataRowVersion.Original, null));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_有限期至", System.Data.SqlDbType.DateTime, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "有限期至", System.Data.DataRowVersion.Original, null));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_期刊借閱次數", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "期刊借閱次數", System.Data.DataRowVersion.Original, null));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_條形碼", System.Data.SqlDbType.VarChar, 40, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "條形碼", System.Data.DataRowVersion.Original, null));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_登記日期", System.Data.SqlDbType.DateTime, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "登記日期", System.Data.DataRowVersion.Original, null));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_類型", System.Data.SqlDbType.VarChar, 20, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "類型", System.Data.DataRowVersion.Original, null));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_聯系方式", System.Data.SqlDbType.VarChar, 100, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "聯系方式", System.Data.DataRowVersion.Original, null));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_證件號碼", System.Data.SqlDbType.VarChar, 60, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "證件號碼", System.Data.DataRowVersion.Original, null));
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(32, 336);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(56, 16);
			this.label4.TabIndex = 1;
			this.label4.Text = "條形碼";
			// 
			// txt4
			// 
			this.txt4.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dataSet11, "讀者信息.條形碼"));
			this.txt4.Location = new System.Drawing.Point(32, 352);
			this.txt4.Name = "txt4";
			this.txt4.ReadOnly = true;
			this.txt4.TabIndex = 2;
			this.txt4.Text = "";
			// 
			// label5
			// 
			this.label5.Location = new System.Drawing.Point(160, 336);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(56, 16);
			this.label5.TabIndex = 1;
			this.label5.Text = "編號";
			// 
			// txt5
			// 
			this.txt5.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dataSet11, "讀者信息.編號"));
			this.txt5.Location = new System.Drawing.Point(160, 352);
			this.txt5.Name = "txt5";
			this.txt5.ReadOnly = true;
			this.txt5.TabIndex = 2;
			this.txt5.Text = "";
			// 
			// txt6
			// 
			this.txt6.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dataSet11, "讀者信息.姓名"));
			this.txt6.Location = new System.Drawing.Point(288, 352);
			this.txt6.Name = "txt6";
			this.txt6.ReadOnly = true;
			this.txt6.TabIndex = 2;
			this.txt6.Text = "";
			// 
			// label6
			// 
			this.label6.Location = new System.Drawing.Point(288, 336);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(56, 16);
			this.label6.TabIndex = 1;
			this.label6.Text = "姓名";
			// 
			// label7
			// 
			this.label7.Location = new System.Drawing.Point(416, 336);
			this.label7.Name = "label7";
			this.label7.Size = new System.Drawing.Size(56, 16);
			this.label7.TabIndex = 1;
			this.label7.Text = "性別";
			// 
			// txt7
			// 
			this.txt7.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dataSet11, "讀者信息.聯系方式"));
			this.txt7.Location = new System.Drawing.Point(32, 400);
			this.txt7.Name = "txt7";
			this.txt7.ReadOnly = true;
			this.txt7.TabIndex = 2;
			this.txt7.Text = "";
			// 
			// label8
			// 
			this.label8.Location = new System.Drawing.Point(528, 336);
			this.label8.Name = "label8";
			this.label8.Size = new System.Drawing.Size(56, 16);
			this.label8.TabIndex = 1;
			this.label8.Text = "類型";
			// 
			// cmb1
			// 

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久久久久99久久久精品网站| 中文字幕中文在线不卡住| 7777精品伊人久久久大香线蕉超级流畅 | eeuss国产一区二区三区| 在线观看亚洲一区| 欧美v日韩v国产v| 国产精品福利在线播放| 国产一区二区三区精品欧美日韩一区二区三区 | 欧美日韩黄色一区二区| 久久天天做天天爱综合色| 亚洲欧洲av在线| 久久97超碰国产精品超碰| 91麻豆国产福利在线观看| 欧美电影一区二区| 最新国产の精品合集bt伙计| 男女男精品视频| 色综合久久综合网97色综合| 久久久久久久综合色一本| 五月开心婷婷久久| 99久久夜色精品国产网站| 精品久久久久一区| 亚洲一区电影777| jvid福利写真一区二区三区| 欧美一级高清片| 亚洲欧美另类久久久精品2019| 国产一区欧美二区| 在线综合视频播放| 亚洲乱码国产乱码精品精小说| 国产一区二区三区免费在线观看| 欧美区在线观看| 亚洲免费观看高清在线观看| 国产高清成人在线| 精品国产99国产精品| 亚洲一区二区影院| 91亚洲男人天堂| 国产精品国产三级国产aⅴ无密码| 久久精品国产99国产| 7777精品伊人久久久大香线蕉的 | 日韩精品一区二区三区在线| 亚洲福利视频三区| 91视频观看免费| 中文字幕av一区二区三区免费看| 免费视频最近日韩| 6080日韩午夜伦伦午夜伦| 亚洲一区二区三区四区在线| 色噜噜夜夜夜综合网| 中文字幕制服丝袜成人av| 国产91精品入口| 国产女人18水真多18精品一级做 | 国产精品国产三级国产| 不卡视频免费播放| 久久久电影一区二区三区| 激情六月婷婷久久| 久久精品一区二区三区av| 狠狠色综合播放一区二区| 久久久99久久| 成人精品视频.| 中文字幕一区二区三区在线播放| 91亚洲精品久久久蜜桃网站 | 色婷婷av一区二区| 亚洲人123区| 欧美在线观看视频在线| 亚洲第一成人在线| 3751色影院一区二区三区| 日韩成人一级片| 日韩一卡二卡三卡国产欧美| 免费观看91视频大全| 精品国产人成亚洲区| 国产99久久久国产精品| 中文字幕在线不卡| 欧美丝袜第三区| 奇米精品一区二区三区四区| 久久婷婷久久一区二区三区| 91啪亚洲精品| 午夜精品一区二区三区电影天堂 | 日韩精品一区二区三区老鸭窝| 精品无码三级在线观看视频| 中文字幕成人在线观看| 欧美午夜在线观看| 九九热在线视频观看这里只有精品| 国产亚洲综合性久久久影院| 99久久精品免费| 免费在线看成人av| 日韩欧美国产不卡| 99久精品国产| 久草这里只有精品视频| 亚洲人成电影网站色mp4| 欧美中文字幕一区| 国产精品夜夜嗨| 亚洲国产毛片aaaaa无费看 | 日韩电影在线一区二区三区| 国产精品女同一区二区三区| www久久久久| 日韩一区二区三区免费看| 色乱码一区二区三区88| 成人国产精品免费观看动漫| 国产精品综合网| 极品尤物av久久免费看| 久久精品国产77777蜜臀| 日韩影院免费视频| 国产精品久久久久久久久久久免费看 | 日韩欧美激情四射| 欧美日韩一卡二卡| 欧美亚洲图片小说| 欧洲一区在线电影| 色香蕉久久蜜桃| 91福利视频在线| 91麻豆6部合集magnet| 成人福利视频在线| 99久久精品免费观看| aaa亚洲精品一二三区| 丁香另类激情小说| 国产宾馆实践打屁股91| 国产福利一区二区三区视频| 久久精品国产亚洲一区二区三区| 麻豆91在线看| 国产一区二区三区国产| 国产最新精品精品你懂的| 精品一区二区久久久| 国产真实乱偷精品视频免| 麻豆精品视频在线| 国产一区二区福利| 成人深夜福利app| 91丨九色丨尤物| 欧美午夜精品一区| 777午夜精品视频在线播放| 欧美精品在线一区二区| 欧美一级淫片007| 26uuu亚洲婷婷狠狠天堂| 国产午夜亚洲精品午夜鲁丝片| 国产三级一区二区| 最新国产の精品合集bt伙计| 亚洲最大成人综合| 精品一区二区三区的国产在线播放| 国产精品自拍av| 91社区在线播放| 欧美一级在线免费| 国产精品萝li| 亚洲一区二区在线免费看| 蜜桃视频在线观看一区二区| 国产成人精品亚洲午夜麻豆| zzijzzij亚洲日本少妇熟睡| 色国产综合视频| 日韩一级二级三级精品视频| 欧美国产一区在线| 亚洲亚洲精品在线观看| 国产一区二区三区黄视频 | 一区二区激情视频| 美女视频网站久久| 91小视频在线免费看| 欧美一区二视频| 中文字幕精品一区二区三区精品| 亚洲国产欧美另类丝袜| 成人小视频在线| 欧美一区二区三区影视| 亚洲色图在线看| 久久精品国产第一区二区三区| 一本一道久久a久久精品| 精品91自产拍在线观看一区| 亚洲蜜桃精久久久久久久| 国产一区二区美女诱惑| 欧美色图免费看| **性色生活片久久毛片| 久久99国产乱子伦精品免费| 欧美在线视频日韩| 国产三级欧美三级日产三级99 | 欧美一区二区视频在线观看2022| 国产精品美女久久久久久久久 | 日本不卡的三区四区五区| www.日韩精品| 久久精品一区八戒影视| 婷婷六月综合网| 欧美亚洲一区二区在线| 椎名由奈av一区二区三区| 久久99精品国产麻豆不卡| 在线不卡的av| 亚洲一区中文日韩| 99久久国产综合精品女不卡| 国产女人水真多18毛片18精品视频 | 色一区在线观看| 国产精品免费久久久久| 国产成人在线电影| 精品国产91洋老外米糕| 久久国产精品区| 日韩一区二区麻豆国产| 日韩精品乱码av一区二区| 91豆麻精品91久久久久久| 亚洲欧洲日产国码二区| 99久久免费精品| 国产精品大尺度| 成人av在线资源网| 中文成人av在线| www.欧美.com| 国产精品久久久久久久久免费相片| 国产电影精品久久禁18| 久久精品视频网| 高清视频一区二区| 中文字幕一区二区5566日韩| 99久久精品免费看国产免费软件| 国产精品网站在线观看|