error importing database AKCore

Results 1 to 8 of 8
  1. #1
    Apprentice m0nt1lla is offline
    MemberRank
    Sep 2013 Join Date
    El Tocuyo, VeneLocation
    23Posts

    sad error importing database AKCore



    if anyone can help me with this error I'd appreciate lifetime ^^


  2. #2
    AKCore ATIDOT3 is offline
    MemberRank
    Apr 2013 Join Date
    BinaryLocation
    536Posts

    Re: error importing database AKCore

    Use navicat.

  3. #3
    Apprentice m0nt1lla is offline
    MemberRank
    Sep 2013 Join Date
    El Tocuyo, VeneLocation
    23Posts

    Re: error importing database AKCore

    Quote Originally Posted by ATIDOT3 View Post
    Use navicat.
    I feel the same with navicat



    "[Err] 1655 - Cannot create stored routine `AuthLogin`. Check warnings[Err] CREATE DEFINER=`root`@`%` PROCEDURE `AuthLogin`(IN m_szUserID VARCHAR(20), IN m_szUserPW VARCHAR(20), OUT m_dwAccountID INT, OUT m_nResultCode INT)
    BEGIN


    DECLARE dec_pw VARCHAR(100);
    DECLARE dec_status VARCHAR(7);


    IF(SELECT EXISTS(SELECT 1 FROM accounts WHERE Username = m_szUserID)) THEN
    SELECT AccountID,AccountPW,acc_status INTO m_dwAccountID,dec_pw,dec_status
    FROM accounts
    WHERE Username = m_szUserID;


    IF (dec_pw = m_szUserPW) THEN
    SET m_nResultCode = 100;
    ELSE
    SET m_nResultCode = 107;
    END IF;
    IF (dec_status = 'block') THEN
    SET m_nResultCode = 113;
    END IF;


    ELSE
    SET m_nResultCode = 108;
    END IF;


    END
    ;
    [Msg] Finished - Unsuccessfully
    --------------------------------------------------"

  4. #4
    AKCore ATIDOT3 is offline
    MemberRank
    Apr 2013 Join Date
    BinaryLocation
    536Posts

    Re: error importing database AKCore

    Try with the new one from the github, kalisto changed some thing about the procedure earlier, maybe it's gonna work.

  5. #5
    Connoisseur of Fine Code SanGawku is offline
    ModeratorRank
    Oct 2006 Join Date
    CyberSpanksLocation
    643Posts

    Re: error importing database AKCore

    I did change it so the definer was Root@Localhost so this is outdated sql.

  6. #6
    Apprentice m0nt1lla is offline
    MemberRank
    Sep 2013 Join Date
    El Tocuyo, VeneLocation
    23Posts

    Re: error importing database AKCore

    Quote Originally Posted by kalisto2002 View Post
    I did change it so the definer was Root@Localhost so this is outdated sql.

    already solved, what happened was I was using AppServ so gave me that error


    AppServ so uninstall and install Xampp and now if I work


    But now I have a problem when trying to build solution


    Best downloaded Visual Studio Ultimate and see if it works so I

  7. #7
    Connoisseur of Fine Code SanGawku is offline
    ModeratorRank
    Oct 2006 Join Date
    CyberSpanksLocation
    643Posts

    Re: error importing database AKCore

    Visual Studio 2010 Ultimate is what you need to compile with. :)

  8. #8
    Apprentice m0nt1lla is offline
    MemberRank
    Sep 2013 Join Date
    El Tocuyo, VeneLocation
    23Posts

    Re: error importing database AKCore

    thanks for the tips and for your supports


    you are the first group that I see that if you are interested in helping others that we have problems ^^


    thank you very much


    keep it ^^



Advertisement