Restructure repository to include all source folders
Move git root from Client/ to src/ to track all source code: - Client: Game client source (moved to Client/Client/) - Server: Game server source - GameTools: Development tools - CryptoSource: Encryption utilities - database: Database scripts - Script: Game scripts - rylCoder_16.02.2008_src: Legacy coder tools - GMFont, Game: Additional resources 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,87 @@
|
||||
|
||||
-- 2005-04-14 정섭에 적용됨
|
||||
|
||||
-- 파티 테이블 수정 --
|
||||
|
||||
ALTER TABLE dbo.PartyInfo
|
||||
Add UserInfo varbinary(70)
|
||||
|
||||
GO
|
||||
-- Friend 테이블 수정 --
|
||||
|
||||
GO
|
||||
|
||||
alter table Friend
|
||||
add FriendInfo varBINARY(704)
|
||||
|
||||
GO
|
||||
|
||||
alter table Friend
|
||||
add BanInfo varBinary(704)
|
||||
|
||||
-- 파티 정보 얻어오기 --
|
||||
|
||||
GO
|
||||
----------------------------------------------------------------------------------------------------------------------
|
||||
-- GetPartyInfo.sql
|
||||
----------------------------------------------------------------------------------------------------------------------
|
||||
/*
|
||||
파티 정보 보기 프로시져
|
||||
*/
|
||||
|
||||
GO
|
||||
|
||||
CREATE PROCEDURE dbo.GetPartyInfo_Part2
|
||||
@Party_uid AS INT /* 파티 아이디 */
|
||||
AS
|
||||
|
||||
SET NOCOUNT ON
|
||||
|
||||
SELECT Party, UserInfo FROM PartyInfo WHERE PID = @Party_uid
|
||||
|
||||
-- 파티 정보 업데이트 --
|
||||
|
||||
GO
|
||||
|
||||
----------------------------------------------------------------------------------------------------------------------
|
||||
-- UpdatePartyInfo.sql
|
||||
----------------------------------------------------------------------------------------------------------------------
|
||||
/*
|
||||
파티 맴버 추가 프로시져
|
||||
*/
|
||||
|
||||
CREATE PROCEDURE dbo.UpdatePartyInfo_Part2
|
||||
@Party_uid AS INT, /* 파티 고유 아이디 */
|
||||
@Party AS varBINARY(202), /* 친구 리스트 */
|
||||
@UserInfo AS varBINARY(72) /* 유저 정보 */
|
||||
AS
|
||||
|
||||
SET NOCOUNT ON
|
||||
|
||||
UPDATE PartyInfo SET Party = @Party, UserInfo = @UserInfo WHERE PID = @Party_uid
|
||||
|
||||
-- 파티 추가 --
|
||||
GO
|
||||
|
||||
|
||||
-------------------------------------------------------------------------------------------------------------
|
||||
-- InsertParty.sql
|
||||
----------------------------------------------------------------------------------------------------------------------
|
||||
/*
|
||||
파티 추가 프로시져
|
||||
*/
|
||||
|
||||
CREATE PROCEDURE dbo.InsertParty_Part2
|
||||
@Party AS varBINARY(202), /* 친구 리스트 */
|
||||
@UserInfo AS varBINARY(72) /* 유저 정보 */
|
||||
AS
|
||||
|
||||
SET NOCOUNT ON
|
||||
|
||||
|
||||
INSERT INTO PartyInfo (Party, UserInfo) VALUES (@Party, @UserInfo)
|
||||
|
||||
/* 고유 아이디 돌려줌 */
|
||||
SELECT CAST(SCOPE_IDENTITY() AS INT)
|
||||
|
||||
GO
|
||||
Reference in New Issue
Block a user