⏩ OldSchoolKO ✅ | " VALHALLA " 2.000.000 TL ÖDÜL ⭐ 3 YIL ARADAN SONRA ✅ v.1098 MYKO EFSANESİ ⚔ OFFICIAL 17.05.2024 - 21:00 ⏪
Cuceko

Failed Creating Database Hatası Çözümü

  •         

            

            

            

            

  • HyperFilter | DoS Protection | DDoS Protection | DoS Mitigation | DDoS Mitigation | AntiDoS | AntiDDoS | Proxy Shielding
A Çevrimdışı

asdasd

Kayıtlı Üye
13 Ekim 2012
306
0
16
Cevap: Failed Creating Database Hatası Çözümü



asğollllllllllllllllllllll
 
1 Çevrimdışı

1cem

Kayıtlı Üye
9 Aralık 2013
268
0
18
30
Cevap: Failed Creating Database Hatası Çözümü



tesekurlerrr
 
B Çevrimdışı

By ShakeaL

Kayıtlı Üye
14 Mayıs 2013
969
0
16
33
Cevap: Failed Creating Database Hatası Çözümü



:thinking::thinking::thinking::thinking::thinking::thinking::thinking::thinking::thinking:
 
A Çevrimdışı

alii1

Kayıtlı Üye
25 Ekim 2016
115
0
16
31
Cevap: Failed Creating Database Hatası Çözümü



234234234234234234
 
Y Çevrimdışı

yusufcihan688

Kayıtlı Üye
29 Kasım 2013
96
0
6
35
Cevap: Failed Creating Database Hatası Çözümü



***Hidden content cannot be quoted.***



USE [HOMEKO ]

GO

/****** Object: StoredProcedure [dbo].[ACCOUNT_LOGIN] Script Date: 01/05/2024 15:31:29 ******/

SET ANSI_NULLS ON

GO

SET QUOTED_IDENTIFIER OFF

GO



ALTER PROCEDURE [dbo].[ACCOUNT_LOGIN]

@AccountID varchar(21),

@Password varchar(13),

@nRet smallint OUTPUT



AS

-- # Account Nation Transfers Queue # --

EXEC ACCOUNT_NATION_TRANSFER ''



--CurrentUserdan Silelim

delete from currentuser where straccountid = @AccountID







-- Orjinalin Devamý :)

DECLARE @Nation tinyint, @CharNum smallint

SET @Nation = 0

SET @CharNum = 0



DECLARE @pwd varchar(13)



SET @pwd = null



SELECT @pwd = strPasswd FROM [dbo].[TB_USER] WHERE strAccountID = @AccountID and idays=6

IF @pwd IS null

BEGIN

SET @nRet = 0

--SET @nRet = 4

RETURN

END



ELSE IF @pwd <> @Password

BEGIN

SET @nRet = 0

--SET @nRet = 3

RETURN

END



DECLARE @PremiumServiceDEC varchar(21)

select @PremiumServiceDEC = count(straccountid) FROM premium_service WHERE strAccountID = @AccountID



SELECT @Nation = bNation, @CharNum = bCharNum FROM ACCOUNT_CHAR WHERE strAccountID = @AccountID

IF @@ROWCOUNT = 0

BEGIN

SET @nRet = 1

RETURN

END

IF @CharNum = 0

BEGIN

SET @nRet = 1

RETURN

END

ELSE

BEGIN

SET @nRet = @Nation+1

--SET @nRet = 1

RETURN

END