Request source for database table CARD_ALBUM_STR and button problem

05/22/2019 15:24 mobai520#1
Request source for database table CARD_ALBUM_STR and button problem

Button problem, I added it here, no red arrow [Only registered and activated users can see links. Click Here To Register...]

HTML Code:
APP_VENDOREX "WndTile02.tga" "" 1 256 320 0x2410000 26
{
// Title String
IDS_RESDATA_INC_001340
}
{
// ToolTip
IDS_RESDATA_INC_001341
}
{
    WTYPE_STATIC WIDC_STATIC1 "" 0 10 6 64 26 0x2260000 0 0 0 0 246 204 77
    {
    // Title String
    IDS_RESDATA_INC_001342
    }
    {
    // ToolTip
    IDS_RESDATA_INC_001343
    }
    WTYPE_STATIC WIDC_STATIC2 "" 0 10 58 62 78 0x2260000 1 1 1 1 246 204 77
    {
    // Title String
    IDS_RESDATA_INC_001344
    }
    {
    // ToolTip
    IDS_RESDATA_INC_001345
    }
    WTYPE_EDITCTRL WIDC_EDIT1 "WndEditTile00.tga" 1 10 32 240 52 0x20000 0 0 0 0 255 255 255
    {
    // Title String
    IDS_RESDATA_INC_001346
    }
    {
    // ToolTip
    IDS_RESDATA_INC_001347
    }
    WTYPE_EDITCTRL WIDC_EDIT2 "WndEditTile00.tga" 1 22 84 224 254 0x20000 0 0 0 0 255 255 255
    {
    // Title String
    IDS_RESDATA_INC_001348
    }
    {
    // ToolTip
    IDS_RESDATA_INC_001349
    }
    WTYPE_BUTTON WIDC_OK "ButtNormal01.tga" 0 18 262 122 286 0x220010 0 0 0 0 0 0 0
    {
    // Title String
    IDS_RESDATA_INC_001350
    }
    {
    // ToolTip
    IDS_RESDATA_INC_001351
    }
    WTYPE_BUTTON WIDC_CANCEL "ButtNormal01.tga" 0 126 262 230 286 0x220010 0 0 0 0 0 0 0
    {
    // Title String
    IDS_RESDATA_INC_001352
    }
    {
    // ToolTip
    IDS_RESDATA_INC_001353
    }
    WTYPE_BUTTON WIDC_CHAT "ButItemChat.BMP" 0 216 60 232 76 0x220010 0 0 0 0 46 112 169
    {
    // Title String
    IDS_RESDATA_INC_001354
    }
    {
    // ToolTip
    IDS_RESDATA_INC_001355
    }

   //New add button
    WTYPE_BUTTON WIDC_STATIC_INFO "" 0 94 58 166 78 0x220010 0 0 0 0
    {
    // Title String
    "使用替身"
    }
    {
    // ToolTip
    "使用替身"
    }

}



The second is to find the source of this table in the CARD_ALBUM_STR database. Thank you. I can't add these codes myself. I am asking for help. Below is the code.
05/22/2019 19:19 ディオニュソス#2
Sure,

Code:
use CHARACTER_01_DBF
go
create proc dbo.CARD_ALBUM_STR
@iGu char(2),
@idPlayer char(7),
@ serverindex char(2),
@ cardinventory varchar(480) = '',
@ cardalbum varchar(240) = ''
as
begin
select 'https://giphy.com/gifs/idiot-sandwich-3o85xnoIXebk3xYx4Q'
end
05/22/2019 19:44 mobai520#3
[quote=ディオニュソス;37562063]Sure,
05/22/2019 19:49 ディオニュソス#4
Quote:
Originally Posted by mobai520 View Post
Thank you, when I executed, something went wrong.

@ serverindex char(2), Should be ‘(’ or ‘,’AS, FOR, or WITH
@ cardinventory varchar(480) = '',
@ cardalbum varchar(240) =
Sorry, you have to remove the spaces after the @, for some reason elitepvpers changes that to a mention.
05/22/2019 19:52 mobai520#5
Quote:
Originally Posted by ディオニュソス View Post
Sorry, you have to remove the spaces after the @, for some reason elitepvpers changes that to a mention.
Thank you, you can do it, I can try it, I can’t thank you for your help.


A new problem has arisen saying that '@idPlayer has no parameters assigned

Quote:
Originally Posted by ディオニュソス View Post
Sorry, you have to remove the spaces after the @, for some reason elitepvpers changes that to a mention.

A new problem has arisen saying that '@idPlayer has no parameters assigned

23/05/2019 - 01:54:29
query:CARD_ALBUM_STR @iGu = 'S1', @m_idPlayer = '0000008', @[Only registered and activated users can see links. Click Here To Register...]dex = '01'
SQLSTATE:42000 error:[Microsoft][SQL Server Native Client 11.0][SQL Server]The procedure 'CARD_ALBUM_STR' requires the parameter '@idPlayer' but is not supplied.

Quote:
use CHARACTER_01_DBF
go
create proc dbo.CARD_ALBUM_STR
@iGu char(2) = 'S1',
@idPlayer char(7) = '0000000', @[Only registered and activated users can see links. Click Here To Register...]dex char(2) = '00' ,
@cardinventory varchar(480) = '',
@cardalbum varchar(240) = ''
as
begin
select 'https://giphy.com/gifs/idiot-sandwich-3o85xnoIXebk3xYx4Q'
end


I did this, have you tried the error
05/23/2019 10:44 ディオニュソス#6
Quote:
Originally Posted by mobai520 View Post
Thank you, you can do it, I can try it, I can’t thank you for your help.


A new problem has arisen saying that '@idPlayer has no parameters assigned




A new problem has arisen saying that '@idPlayer has no parameters assigned

23/05/2019 - 01:54:29
query:CARD_ALBUM_STR @iGu = 'S1', @m_idPlayer = '0000008', @[Only registered and activated users can see links. Click Here To Register...]dex = '01'
SQLSTATE:42000 error:[Microsoft][SQL Server Native Client 11.0][SQL Server]The procedure 'CARD_ALBUM_STR' requires the parameter '@idPlayer' but is not supplied.





I did this, have you tried the error
Sorry, I messed up. Replace @idPlayer with @m_idPlayer
05/23/2019 11:53 mobai520#7
Quote:
Originally Posted by ディオニュソス View Post
Sorry, I messed up. Replace @idPlayer with @m_idPlayer
Quote:
SQLSTATE:42000 error:[Microsoft][SQL Server Native Client 11.0][SQL Server]The procedure 'CARD_ALBUM_STR' requires the parameter '@idPlayer' but is not supplied.

Thank you, still the same mistake, I tried to change this, but it is also unusable, or the same parameters that are provided by @idPlayer, I feel that I still lack a CARD_ALBUM_TBL table to provide


After the change, there will be no such mistakes, that is, it is still impossible to enter the world. The last step is directly said that it cannot be connected.



This is not wrong
Error_20190523.log
..\_Database\DbManagerFun.cpp, 1549 Dofu and more
23/05/2019 - 20:39:12
It doesn't have any content to get stuff in stock!

Quote:
Originally Posted by ディオニュソス View Post
Sorry, I messed up. Replace @idPlayer with @m_idPlayer




I think the database will also increase the card's content inventory.
05/24/2019 16:37 plopy#8
Hello !

I'am the creator of this card system :p, it is obvious that I wouldn't give the database, but if you were a true developer, you would be able to recreate it from the source code :).

That said, I sincerely doubt that you can do it, considering that you seem to take seriously the bullshit mentioned above x).

Have fun ;).
05/24/2019 19:45 mobai520#9
Quote:
Originally Posted by plopy View Post
Hello !

I'am the creator of this card system :p, it is obvious that I wouldn't give the database, but if you were a true developer, you would be able to recreate it from the source code :).

That said, I sincerely doubt that you can do it, considering that you seem to take seriously the bullshit mentioned above x).

Have fun ;).
Yes, if I really understand it, I will not post a request here to help. What you said is correct, and no one is willing to give something. Some people will answer it because they are kind enough to help others. I should be thankful. At least someone helped me solve some problems. Of course, I also learned these principles.
05/25/2019 04:24 Naltalah#10
Quote:
Originally Posted by mobai520 View Post
Yes, if I really understand it, I will not post a request here to help. What you said is correct, and no one is willing to give something. Some people will answer it because they are kind enough to help others. I should be thankful. At least someone helped me solve some problems. Of course, I also learned these principles.
What you should really take away from this post is maybe read stuff people give you before you blindly copy & paste it.
05/25/2019 13:33 mobai520#11
Quote:
Originally Posted by Naltalah View Post
What you should really take away from this post is maybe read stuff people give you before you blindly copy & paste it.
This is a forum for learning, sharing, and understanding and thinking. It is your own skill, right? I can only get the solution from it. I can’t recreate it.
05/25/2019 13:45 Naltalah#12
Quote:
Originally Posted by mobai520 View Post
This is a forum for learning, sharing, and understanding and thinking. It is your own skill, right? I can only get the solution from it. I can’t recreate it.
Then please, think. Read what the code for the procedure actually sais.

Notice something weird? If you don't you just start learning the basics of SQL.
05/25/2019 14:32 mobai520#13
Quote:
Originally Posted by Naltalah View Post
Then please, think. Read what the code for the procedure actually sais.

Notice something weird? If you don't you just start learning the basics of SQL.
I feel like C++ and I need SQL. But I don't have that mind, I have ideas, I can't achieve it.