public void DeleteCampaignScraperData(string query) { try { DataBaseHandler.DeleteQuery(query, "tb_CampaignScraper"); } catch { } }
public static void deleteQuery() { try { string DeleteQuery = "Delete from tb_emails"; DataBaseHandler.DeleteQuery(DeleteQuery, "tb_emails"); } catch (Exception ex) { } }
public static void deleteFollower(string screen_Name, string unfollower) { try { string query = "DELETE FROM tb_FollowerName where UserName='******' and FollwerName='" + unfollower + "'"; DataBaseHandler.DeleteQuery(query, "tb_FollowerName"); } catch (Exception ex) { } }
public static void DeleteAccounts(string username) { try { string deleteQuery = "Delete from tb_emails where Username='******'"; DataBaseHandler.DeleteQuery(deleteQuery, "tb_emails"); } catch (Exception ex) { } }
public void DeleteFollowDUsernameIDFromTb_User_Followr_Details(string UserInfo) { try { string strQuery = "DELETE FROM tb_user_follower_details WHERE followerName='" + UserInfo + "'"; DataBaseHandler.DeleteQuery(strQuery, "tb_user_follower_details"); } catch (Exception) { } }
public void DeleteAccountReport(string module) { try { string deleteQuery = "Delete from tb_AccountReport where ModuleName='" + module + "'"; DataBaseHandler.DeleteQuery(deleteQuery, "tb_AccountReport"); } catch (Exception ex) { } }
public void DeleteAccomplishedFromTBScheduler() { try { string strQuery = "Delete FROM tb_Scheduler_Module where IsAccomplished='" + "1" + "'"; DataBaseHandler.DeleteQuery(strQuery, "tb_Scheduler_Module"); } catch (Exception) { } }
public void DeleteSelectedRowFromTBScheduler(string id) { try { string strQuery = "Delete FROM tb_Scheduler_Module where Id='" + id + "'"; DataBaseHandler.DeleteQuery(strQuery, "tb_Scheduler_Module"); } catch (Exception) { } }
public void DeleteFollowDUsernameID_List(string useremail, string userid) { try { string strQuery = "DELETE FROM tb_Follow WHERE username='******' and following_username = '******'"; DataBaseHandler.DeleteQuery(strQuery, "tb_Follow"); } catch (Exception) { } }
public void DeletePrivateIPData() { try { string strQuery = "DELETE From tb_IP WHERE IsPublic = 1"; DataBaseHandler.DeleteQuery(strQuery, "tb_IP"); } catch (Exception ex) { } }
public void DeletePublicProxyData() { try { string strQuery = "DELETE From tb_Proxies WHERE IsPublic = 0"; DataBaseHandler.DeleteQuery(strQuery, "tb_Proxies"); } catch (Exception ex) { } }
public void DeleteSelectedRowFromTBScheduler(string id) { try { string strQuery = "Delete FROM tb_Scheduler_Module where Id='" + id + "'"; DataBaseHandler.DeleteQuery(strQuery, "tb_Scheduler_Module"); } catch (Exception ex) { GlobusLogHelper.log.Error("Error : " + ex.StackTrace); } }
public void DeleteAccomplishedFromTBScheduler() { try { string strQuery = "Delete FROM tb_Scheduler_Module where IsAccomplished='" + "1" + "'"; DataBaseHandler.DeleteQuery(strQuery, "tb_Scheduler_Module"); } catch (Exception ex) { GlobusLogHelper.log.Error("Error : " + ex.StackTrace); } }
public void DeleteFollowDUsernameIDFromTb_User_Followr_Details(string UserInfo) { try { string strQuery = "DELETE FROM tb_user_follower_details WHERE followerName='" + UserInfo + "'"; DataBaseHandler.DeleteQuery(strQuery, "tb_user_follower_details"); } catch (Exception ex) { GlobusLogHelper.log.Error("Error : " + ex.StackTrace); } }
public void DeleteFollowDUsernameID_List(string useremail, string userid) { try { string strQuery = "DELETE FROM tb_Follow WHERE username='******' and following_username = '******'"; DataBaseHandler.DeleteQuery(strQuery, "tb_Follow"); } catch (Exception ex) { GlobusLogHelper.log.Error("Error : " + ex.StackTrace); } }
public void DeletePrivateProxyData() { try { string strQuery = "DELETE From tb_Proxies WHERE IsPublic = 1"; DataBaseHandler.DeleteQuery(strQuery, "tb_Proxies"); } catch (Exception ex) { GlobusLogHelper.log.Error("Error : " + ex.StackTrace); } }
public void DeleteDBCDecaptcherData(string strDeathByCaptcha) { try { string strTable = "tb_Setting"; string strQuery = "DELETE FROM tb_Setting WHERE FileType='" + strDeathByCaptcha + "'"; DataBaseHandler.DeleteQuery(strQuery, strTable); } catch (Exception) { } }
public void DeleteDBCDecaptcherData(string strDeathByCaptcha) { try { string strTable = "tb_Setting"; string strQuery = "DELETE FROM tb_Setting WHERE FileType='" + strDeathByCaptcha + "'"; DataBaseHandler.DeleteQuery(strQuery, strTable); } catch (Exception ex) { GlobusLogHelper.log.Error("Error : " + ex.StackTrace); } }
public void DeleteAccounts(string Account) { string DeleteQuery = "delete from tb_LinkedInAccount where UserName='******'"; DataBaseHandler.DeleteQuery(DeleteQuery, "tb_LinkedInAccount"); }
public void DeleteDataLogin(string id) { string DeleteQuery = "delete from tb_CamapignSearcWithInvite where CamPaignName='" + id + "'"; DataBaseHandler.DeleteQuery(DeleteQuery, "tb_CamapignSearcWithInvite"); }
public void DeleteAccounts(string Account) { string DeleteQuery = "delete from AccountInfo where UserName='******'"; DataBaseHandler.DeleteQuery(DeleteQuery, "AccountInfo"); }