Query

Results 1 to 4 of 4
  1. #1
    Enthusiast vhrool12 is offline
    MemberRank
    Jul 2013 Join Date
    28Posts

    Query

    Hello, does anyone have a query to close the clan for the game and can give me, version 1.5 / clan close <name>


  2. #2
    Member LGPaul is offline
    MemberRank
    Jul 2013 Join Date
    62Posts

    Re: Query

    Quote Originally Posted by vhrool12 View Post
    Hello, does anyone have a query to close the clan for the game and can give me, version 1.5 / clan close <name>
    Code:
    Programming -> StoredProcedure -> spReserveCloseClan


    Code:
    USE [GunzDB]  
    GO  
    /****** Object:  StoredProcedure [dbo].[spReserveCloseClan]    Script Date: 08/08/2009 23:20:22 ******/
    SET ANSI_NULLS ON  
    GO  
    SET QUOTED_IDENTIFIER ON  
    GO  
    ALTER PROC [dbo].[spReserveCloseClan]  
    @CLID int  
    , @ClanName varchar(24)  
    , @MasterCID int  
    , @DeleteDate varchar(24)  
    AS  
    UPDATE Clan SET DeleteFlag=1, Name=NULL, DeleteName=@ClanName WHERE CLID=@CLID AND MasterCID=@MasterCID

    Message.xml

    Code:
    <MSG id="1108">This clan has been closed, please rejoin.</Msg> 

  3. #3
    Enthusiast vhrool12 is offline
    MemberRank
    Jul 2013 Join Date
    28Posts

    Re: Query

    Quote Originally Posted by LGPaul View Post
    Code:
    Programming -> StoredProcedure -> spReserveCloseClan


    Code:
    USE [GunzDB]  
    GO  
    /****** Object:  StoredProcedure [dbo].[spReserveCloseClan]    Script Date: 08/08/2009 23:20:22 ******/
    SET ANSI_NULLS ON  
    GO  
    SET QUOTED_IDENTIFIER ON  
    GO  
    ALTER PROC [dbo].[spReserveCloseClan]  
    @CLID int  
    , @ClanName varchar(24)  
    , @MasterCID int  
    , @DeleteDate varchar(24)  
    AS  
    UPDATE Clan SET DeleteFlag=1, Name=NULL, DeleteName=@ClanName WHERE CLID=@CLID AND MasterCID=@MasterCID

    Message.xml

    Code:
    <MSG id="1108">This clan has been closed, please rejoin.</Msg> 
    thanks.

  4. #4
    I like pie OJuice is offline
    MemberRank
    Jul 2011 Join Date
    205Posts

    Re: Query




Advertisement