Guest User

Untitled

a guest
Jul 18th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. set ANSI_NULLS ON
  2. set QUOTED_IDENTIFIER ON
  3. GO
  4. ALTER PROCEDURE [dbo].[INSERT_HACKTOOL_USER]
  5. @AccountID char(21),
  6. @CharID char(21),
  7. @HackToolName char(512)
  8. AS
  9. INSERT INTO HACKTOOL_USERLOG (strAccountID, strCharID, strHackToolName) VALUES (@AccountID, @CharID, @HackToolName)
  10.  
  11. GO
  12. ALTER PROCEDURE [dbo].[INSERT_HACKTOOL_USER]
  13. @AccountID char(21),
  14. @CharID char(21),
  15. AS
  16. INSERT INTO DISCONNECT_USER (strAccountID, strCharID) VALUES (@AccountID, @CharID)
Add Comment
Please, Sign In to add comment