本文整理汇总了C#中IP.Core.IPUserService.CStoredProc.fillDataSetByCommand方法的典型用法代码示例。如果您正苦于以下问题:C# CStoredProc.fillDataSetByCommand方法的具体用法?C# CStoredProc.fillDataSetByCommand怎么用?C# CStoredProc.fillDataSetByCommand使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IP.Core.IPUserService.CStoredProc
的用法示例。
在下文中一共展示了CStoredProc.fillDataSetByCommand方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetThamSoBangLuongThang
public void GetThamSoBangLuongThang(DS_BAO_CAO_THAM_SO_BANG_LUONG ip_ds, decimal ip_dec_thang, decimal ip_dec_nam)
{
CStoredProc v_sp = new CStoredProc("PR_GET_THAM_SO_BANG_LUONG");
v_sp.addDecimalInputParam("@THANG", ip_dec_thang);
v_sp.addDecimalInputParam("@NAM", ip_dec_nam);
v_sp.fillDataSetByCommand(this, ip_ds);
}
示例2: FillDatasetLopMonDaCo
public void FillDatasetLopMonDaCo(DataSet v_ds, decimal id_nhan_vien, decimal id_mon_hoc)
{
CStoredProc v_cstore = new CStoredProc("get_lop_mon_da_co");
v_cstore.addDecimalInputParam("@id_nhan_vien", id_nhan_vien);
v_cstore.addDecimalInputParam("@id_mon_hoc", id_mon_hoc);
v_cstore.fillDataSetByCommand(this, v_ds);
}
示例3: FillDatasetWithProc
public void FillDatasetWithProc(DataSet op_ds, string ip_str_table_name, string ip_str_column_name)
{
CStoredProc v_cstore = new CStoredProc("get_data_to_dataset_with_table_name_and_column_name");
v_cstore.addNVarcharInputParam("@TABLE_NAME", ip_str_table_name);
v_cstore.addNVarcharInputParam("@COLUMN_NAME", ip_str_column_name);
v_cstore.fillDataSetByCommand(this, op_ds);
}
示例4: FillDatasetLogin
public void FillDatasetLogin(DataSet v_ds, string user,string pass, decimal id_chi_nhanh)
{
CStoredProc v_cstore = new CStoredProc("check_login");
v_cstore.addNVarcharInputParam("@user", user);
v_cstore.addNVarcharInputParam("@pass", pass);
v_cstore.addDecimalInputParam("@id_chi_nhanh", id_chi_nhanh);
v_cstore.fillDataSetByCommand(this, v_ds);
}
示例5: FillDatasetCBO
internal void FillDatasetCBO(DataSet op_ds, string ip_str_table_name, string ip_str_value_field, string ip_str_display_field, string ip_str_condition)
{
CStoredProc v_cstore = new CStoredProc("get_data_for_cbo");
v_cstore.addNVarcharInputParam("@TABLE_NAME", ip_str_table_name);
v_cstore.addNVarcharInputParam("@COLUMN_VALUE", ip_str_value_field);
v_cstore.addNVarcharInputParam("@COLUMN_DISPLAY", ip_str_display_field);
v_cstore.addNVarcharInputParam("@CONDITION", ip_str_condition);
v_cstore.fillDataSetByCommand(this, op_ds);
}
示例6: load_data_grid
private void load_data_grid(string ip_str_tu_khoa)
{
DS_DM_DAT v_ds_dm_dat = new DS_DM_DAT();
if (ip_str_tu_khoa.Equals(String.Empty))
{
m_us_dm_dat.FillDataset(v_ds_dm_dat);
}
else
{
CStoredProc v_cstore = new CStoredProc("pr_DM_DAT_Search");
v_cstore.addNVarcharInputParam("@TU_KHOA", ip_str_tu_khoa);
v_cstore.fillDataSetByCommand(m_us_dm_dat, v_ds_dm_dat);
}
m_grv_danh_sach_nha.DataSource = v_ds_dm_dat.DM_DAT;
m_grv_danh_sach_nha.DataBind();
}
示例7: ExecuteFuntionSql
public static string ExecuteFuntionSql(string ip_str_funtion_name, params object[] parameters)
{
string v_str_select = "select dbo." + ip_str_funtion_name;
string v_str_param = "";
foreach(object item in parameters)
{
v_str_param = v_str_param + "'" + item.ToString()+ "'" + ",";
}
string v_query = v_str_select + "(" + v_str_param;
if(parameters.Length > 0)
{
v_query = v_query.Substring(0, v_query.LastIndexOf(","));
}
v_query = v_query + ")";
CStoredProc v_sp = new CStoredProc("pr_execute_funtion_sql");
v_sp.addNVarcharInputParam("@ip_str_query", v_query);
DataSet v_ds = new DataSet();
v_ds.Tables.Add();
US_DUNG_CHUNG v_us = new US_DUNG_CHUNG();
v_sp.fillDataSetByCommand(v_us, v_ds);
return v_ds.Tables[0].Rows[0][0].ToString();
}
示例8: FillDatasetWithTableName
internal void FillDatasetWithTableName(DataSet op_ds, string ip_str_table_name)
{
CStoredProc v_cstore = new CStoredProc("get_data_from_table");
v_cstore.addNVarcharInputParam("@TABLE_NAME", ip_str_table_name);
v_cstore.fillDataSetByCommand(this, op_ds);
}
示例9: FillDataSet_Load_data_to_grid_danh_muc_don_vi_by_key_word
public void FillDataSet_Load_data_to_grid_danh_muc_don_vi_by_key_word(
DS_DM_DON_VI op_ds_don_vi
, decimal v_dc_id_loai_don_vi
, string v_str_user_name
, string v_str_key_word)
{
CStoredProc cstored = new CStoredProc("pr_DM_DON_VI_Load_to_grid_danh_muc_by_key_word");
cstored.addDecimalInputParam("@ip_dc_loai_don_vi", v_dc_id_loai_don_vi);
cstored.addNVarcharInputParam("@ip_str_user_name", v_str_user_name);
cstored.addNVarcharInputParam("@ip_str_key_word", v_str_key_word);
cstored.fillDataSetByCommand(this, op_ds_don_vi);
}
示例10: FillDatasetByQueryString
public void FillDatasetByQueryString(
WebDS.DS_DM_DON_VI op_ds_don_vi
, string v_dc_id_loai_don_vi)
{
CStoredProc cstored = new CStoredProc("pr_DM_DON_VI_grid");
cstored.addDecimalInputParam("@ID_LOAI_DON_VI", v_dc_id_loai_don_vi);
cstored.fillDataSetByCommand(this, op_ds_don_vi);
}
示例11: FillDataset
public void FillDataset(
DS_DM_DON_VI op_ds_don_vi
, decimal ip_dc_id_loai_don_vi
, decimal ip_dc_id_don_vi_cap_tren1
, decimal ip_dc_id_don_vi_cap_tren2
, string ip_str_loai_hinh_don_vi
, string ip_str_user_name
)
{
CStoredProc v_obj_procedure = new CStoredProc("pr_DM_DON_VI_loai_hinh_don_vi_Select_by_user_name");
v_obj_procedure.addNVarcharInputParam("@ip_str_user_name", ip_str_user_name);
v_obj_procedure.addDecimalInputParam("@ip_dc_loai_don_vi", ip_dc_id_loai_don_vi);
v_obj_procedure.addDecimalInputParam("@ip_dc_id_dv_cap_tren1", ip_dc_id_don_vi_cap_tren1);
v_obj_procedure.addDecimalInputParam("@ip_dc_id_dv_cap_tren2", ip_dc_id_don_vi_cap_tren2);
v_obj_procedure.addNVarcharInputParam("@ip_str_loai_hinh_don_vi", ip_str_loai_hinh_don_vi);
v_obj_procedure.fillDataSetByCommand(this, op_ds_don_vi);
}
示例12: fill_data_bo_loc
public void fill_data_bo_loc(DS_V_HT_LOG_TRUY_CAP op_ds_ht_log_truy_cap
, string ip_str_username
, DateTime ip_dat_tu_ngay
, DateTime ip_dat_den_ngay
, decimal ip_dc_id_hanh_dong)
{
CStoredProc v_cstore = new CStoredProc("pr_V_HT_LOG_TRUY_CAP_filter");
v_cstore.addNVarcharInputParam("@USERNAME", ip_str_username);
v_cstore.addDatetimeInputParam("@TU_NGAY", ip_dat_tu_ngay);
v_cstore.addDatetimeInputParam("@DEN_NGAY", ip_dat_den_ngay);
v_cstore.addDecimalInputParam("@ID_LOAI_HANH_DONG", ip_dc_id_hanh_dong);
v_cstore.fillDataSetByCommand(this, op_ds_ht_log_truy_cap);
}
示例13: GetLNSTheoHopDong
public DataTable GetLNSTheoHopDong(decimal ip_id_hop_dong)
{
CStoredProc v_cstore = new CStoredProc("pr_LNS_get_theo_hop_dong");
v_cstore.addDecimalInputParam("@ip_id_hop_dong", ip_id_hop_dong);
DS_GD_HE_SO_LNS v_ds = new DS_GD_HE_SO_LNS();
v_cstore.fillDataSetByCommand(this, v_ds);
return v_ds.Tables[0];
}
示例14: FillDatasetSQLInjection
internal void FillDatasetSQLInjection(DataSet v_ds, string p)
{
CStoredProc v_cstore = new CStoredProc("sqlInjection");
v_cstore.addNVarcharInputParam("@str_query", p);
v_cstore.fillDataSetByCommand(this, v_ds);
}
示例15: LayDanhSachNhanVienKiemNhiem
public DS_V_GD_CONG_TAC LayDanhSachNhanVienKiemNhiem(DateTime ip_dat_tu_ngay, DateTime ip_dat_den_ngay)
{
CStoredProc v_sp = new CStoredProc("pr_lay_danh_sach_nhan_vien_bo_nhiem");
DS_V_GD_CONG_TAC v_ds = new DS_V_GD_CONG_TAC();
v_ds.EnforceConstraints = false;
v_sp.addDatetimeInputParam("@ip_dat_tu_ngay", ip_dat_tu_ngay);
v_sp.addDatetimeInputParam("@ip_dat_den_ngay", ip_dat_den_ngay);
v_sp.fillDataSetByCommand(this, v_ds);
return v_ds;
}