ChangeName alternative bypass.

07/14/2014 16:44 Sicarium#1
Hi, this is my changeName bypass made many months ago and now I would like share with the community. Remember that with this method, the RenameName scroll doesn't work.

[Only registered and activated users can see links. Click Here To Register...]

Right button on TCHARTABLE --> Design Table, and now go in Trigger, set all like the image.

Now delete all from Definition and put this script into.

Code:
BEGIN
DECLARE @oldname VARCHAR(255)
DECLARE @newname VARCHAR(255)

SELECT @oldname = szNAME FROM DELETED
SELECT @newname = szNAME FROM INSERTED

IF(@oldname != @newname)
     BEGIN
         ROLLBACK;
     END

END
Now save and test it ;).
07/14/2014 16:49 TinLevin#2
best dev! :P
07/14/2014 17:56 RedSwag#3
Quote:
Originally Posted by TinLevin View Post
best dev! :P
All people for you is the best dev? huuh.


Nice job. but i think, something like that already has been released by someone :rolleyes:
07/14/2014 18:00 Sicarium#4
Thanks, However I gave it to others guys, for example gydekk. So if you see others script like this, it is mine ;).

However I made as well scripts like yours for many tables but always many months ago. But I prefer that new one script that i published then this one.

[Only registered and activated users can see links. Click Here To Register...]
07/14/2014 18:07 TinLevin#5
Quote:
Originally Posted by RedSwag View Post
All people for you is the best dev? huuh.
nop just 2 Glossy and Jack.
07/14/2014 18:29 RedSwag#6
Quote:
Originally Posted by TinLevin View Post
nop just 2 Glossy and Jack.
And now scarium, finally!

May i test it. or no.

#EDIT:
Quote:
Originally Posted by Sicarium View Post
I'm dev_jack85 in skype xD
LoL.... I have failed :D
07/14/2014 18:38 Sicarium#7
I'm dev_jack85 in skype xD
07/15/2014 13:05 Luôô#8
Better fix it directly in source. So the scroll will work :P
07/15/2014 16:22 RedSwag#9
Quote:
Originally Posted by Luôô View Post
Better fix it directly in source. So the scroll will work :P
My bypass does it. since it have coding on source and database.

[Only registered and activated users can see links. Click Here To Register...]
07/15/2014 20:49 Sicarium#10
Too long via source for me. I prefer these easy bypass made in 1,2 minutes xD.