Rancp problem how can delete this row i want to make only one row for the item thank

Results 1 to 10 of 10
  1. #1
    Account Upgraded | Title Enabled! bhoszmuco14 is offline
    MemberRank
    Jun 2012 Join Date
    373Posts

    Rancp problem how can delete this row i want to make only one row for the item thank

    RANCP PROBLEM HOW CAN DELETE ALL OF THIS ROW

    I WANT TO MAKE ONLY ONE ROW FOR THE ITEM SHOP
    THANK





    THANKS

    and why every time i buy on itemshop i didn`t recieve the item that i buy
    Last edited by bhoszmuco14; 12-11-12 at 10:05 PM. Reason: wrong


  2. #2
    Proficient Member raffy0809 is offline
    MemberRank
    Feb 2010 Join Date
    in your heartLocation
    169Posts

    Re: Rancp problem how can delete this row i want to make only one row for the item t

    the problem is in your ranshop.... and if you want to delete that row edit the corresponding php file..

  3. #3
    Account Upgraded | Title Enabled! bhoszmuco14 is offline
    MemberRank
    Jun 2012 Join Date
    373Posts

    Re: Rancp problem how can delete this row i want to make only one row for the item t

    problem solved but how to fix because if i buy an item on itemshop .. i didn`t receive ..

  4. #4
    Valued Member deedz12 is offline
    MemberRank
    Mar 2012 Join Date
    105Posts

    Re: Rancp problem how can delete this row i want to make only one row for the item t


  5. #5
    Account Upgraded | Title Enabled! bhoszmuco14 is offline
    MemberRank
    Jun 2012 Join Date
    373Posts

    Re: Rancp problem how can delete this row i want to make only one row for the item t

    will try this liked

    not working sir i already followed the ep7 shop.bak on that thread

  6. #6
    QT is better than VS tearhear18 is offline
    MemberRank
    Jul 2009 Join Date
    earthLocation
    980Posts

    Re: Rancp problem how can delete this row i want to make only one row for the item t

    check your itempurkey

  7. #7
    Valued Member deedz12 is offline
    MemberRank
    Mar 2012 Join Date
    105Posts

    Re: Rancp problem how can delete this row i want to make only one row for the item t

    did you execute this ?
    Quote:
    USE [RanShop]
    GO

    IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(N'[DF_ShopPurchase_PurPrice]') AND type = 'D')
    BEGIN
    ALTER TABLE [dbo].[ShopPurchase] DROP CONSTRAINT [DF_ShopPurchase_PurPrice]
    END

    GO

    IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(N'[DF_ShopPurchase_PurFlag]') AND type = 'D')
    BEGIN
    ALTER TABLE [dbo].[ShopPurchase] DROP CONSTRAINT [DF_ShopPurchase_PurFlag]
    END

    GO

    IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(N'[DF_ShopPurchase_PurDate]') AND type = 'D')
    BEGIN
    ALTER TABLE [dbo].[ShopPurchase] DROP CONSTRAINT [DF_ShopPurchase_PurDate]
    END

    GO

    USE [RanShop]
    GO

    /****** Object: Table [dbo].[ShopPurchase] Script Date: 05/20/2010 19:17:31 ******/
    IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[ShopPurchase]') AND type in (N'U'))
    DROP TABLE [dbo].[ShopPurchase]
    GO

    USE [RanShop]
    GO

    /****** Object: Table [dbo].[ShopPurchase] Script Date: 05/20/2010 19:17:31 ******/
    SET ANSI_NULLS ON
    GO

    SET QUOTED_IDENTIFIER ON
    GO

    SET ANSI_PADDING ON
    GO

    CREATE TABLE [dbo].[ShopPurchase](
    [PurKey] [varchar](21) NOT NULL,
    [UserUID] [varchar](20) NOT NULL,
    [ProductNum] [int] NOT NULL,
    [PurPrice] [int] NOT NULL,
    [PurFlag] [int] NOT NULL,
    [PurDate] [datetime] NOT NULL,
    [PurChgDate] [datetime] NULL,
    CONSTRAINT [PK_ShopPurchase] PRIMARY KEY CLUSTERED
    (
    [PurKey] ASC
    )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
    ) ON [PRIMARY]

    GO

    SET ANSI_PADDING OFF
    GO

    ALTER TABLE [dbo].[ShopPurchase] ADD CONSTRAINT [DF_ShopPurchase_PurPrice] DEFAULT ((0)) FOR [PurPrice]
    GO

    ALTER TABLE [dbo].[ShopPurchase] ADD CONSTRAINT [DF_ShopPurchase_PurFlag] DEFAULT ((0)) FOR [PurFlag]
    GO

    ALTER TABLE [dbo].[ShopPurchase] ADD CONSTRAINT [DF_ShopPurchase_PurDate] DEFAULT (getdate()) FOR [PurDate]
    GO

  8. #8
    QT is better than VS tearhear18 is offline
    MemberRank
    Jul 2009 Join Date
    earthLocation
    980Posts

    Re: Rancp problem how can delete this row i want to make only one row for the item t

    try to check itempurchase if your username is inserted

  9. #9
    Account Upgraded | Title Enabled! bhoszmuco14 is offline
    MemberRank
    Jun 2012 Join Date
    373Posts

    Re: Rancp problem how can delete this row i want to make only one row for the item t

    Master tearhear18 @ i checked but no purchase record here .

    Deedz@ nope didn`t execute that sir how to execute do you have .. and file for that

    Last edited by bhoszmuco14; 15-11-12 at 08:02 AM. Reason: wew

  10. #10
    Valued Member MicoJohn20 is offline
    MemberRank
    Feb 2014 Join Date
    ManilaLocation
    143Posts

    Re: Rancp problem how can delete this row i want to make only one row for the item t

    Hello .. See Ran Cp Ep3 :)

    Picture i easy haha ..

    http://postimg.org/image/ul6u6pd69/



Advertisement