111,014
社区成员
发帖
与我相关
我的任务
分享
SqlConnection conn=new SqlConnection(ConfigurationSettings.AppSettings["ConnectString"]);
conn.Open();
SqlCommand comm=new SqlCommand("cb_save",conn);
comm.CommandType=CommandType.StoredProcedure;
comm.Parameters.Add("@type",System.Data.SqlDbType.Int,4);
comm.Parameters["@type"].Value=Type;
comm.Parameters.Add("@EmployeeCD",System.Data.SqlDbType.VarChar,8);
comm.Parameters["@EmployeeCD"].Value=EmployeeCD;
comm.Parameters.Add("@BeginDate",System.Data.SqlDbType.DateTime,8);
comm.Parameters[@BeginDate].Value=DateTime.Parse(BeginDate);
comm.Parameters.Add("@EndDate",System.Data.SqlDbType.SmallDateTime,4);
comm.Parameters["@EndDate"].Value=DateTime.Parse(EndDate);
comm.Parameters.Add("@WorkTime",System.Data.SqlDbType.VarChar,4);
comm.Parameters["@WorkTime"].Value=this.txtOvertimeWorkTime.Text.ToString();
comm.ExecuteNonQuery();
SqlConnection conn=new SqlConnection(ConfigurationSettings.AppSettings["ConnectString"]);
conn.Open();
SqlCommand comm=new SqlCommand("cb_save",conn);
comm.CommandType=CommandType.StoredProcedure;
comm.Parameters.Add("@type",System.Data.SqlDbType.Int,4);
comm.Parameters["@type"].Value=Type;
comm.Parameters.Add("@EmployeeCD",System.Data.SqlDbType.VarChar,8);
comm.Parameters["@EmployeeCD"].Value=EmployeeCD;
comm.Parameters.Add("@BeginDate",System.Data.SqlDbType.DateTime,8);
comm.Parameters["@BeginDate"].Value=DateTime.Parse(BeginDate);
comm.Parameters.Add("@EndDate",System.Data.SqlDbType.SmallDateTime,4);
comm.Parameters["@EndDate"].Value=DateTime.Parse(EndDate);
comm.Parameters.Add("@WorkTime",System.Data.SqlDbType.VarChar,4);
comm.Parameters["@WorkTime"].Value=this.txtOvertimeWorkTime.Text.ToString();
comm.ExecuteNonQuery();
comm.Parameters[@BeginDate].Value=DateTime.Parse(BeginDate);
引号
comm.Parameters["@BeginDate"].Value=DateTime.Parse(BeginDate);