Ejemplo n.º 1
0
 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)
     {
     }
 }
Ejemplo n.º 5
0
 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)
     {
     }
 }
Ejemplo n.º 8
0
 public void DeleteSelectedRowFromTBScheduler(string id)
 {
     try
     {
         string strQuery = "Delete FROM tb_Scheduler_Module where Id='" + id + "'";
         DataBaseHandler.DeleteQuery(strQuery, "tb_Scheduler_Module");
     }
     catch (Exception)
     {
     }
 }
Ejemplo n.º 9
0
 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)
     {
     }
 }
Ejemplo n.º 10
0
 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)
     {
     }
 }
Ejemplo n.º 12
0
 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);
     }
 }
Ejemplo n.º 13
0
 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);
     }
 }
Ejemplo n.º 14
0
 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);
     }
 }
Ejemplo n.º 15
0
 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);
     }
 }
Ejemplo n.º 16
0
 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);
     }
 }
Ejemplo n.º 17
0
        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)
            {
            }
        }
Ejemplo n.º 18
0
        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);
            }
        }
Ejemplo n.º 19
0
        public void DeleteAccounts(string Account)
        {
            string DeleteQuery = "delete from tb_LinkedInAccount where UserName='******'";

            DataBaseHandler.DeleteQuery(DeleteQuery, "tb_LinkedInAccount");
        }
Ejemplo n.º 20
0
        public void DeleteDataLogin(string id)
        {
            string DeleteQuery = "delete from tb_CamapignSearcWithInvite where CamPaignName='" + id + "'";

            DataBaseHandler.DeleteQuery(DeleteQuery, "tb_CamapignSearcWithInvite");
        }
Ejemplo n.º 21
0
        public void DeleteAccounts(string Account)
        {
            string DeleteQuery = "delete from AccountInfo where UserName='******'";

            DataBaseHandler.DeleteQuery(DeleteQuery, "AccountInfo");
        }