TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Gaurav Raj
NA
475
88.1k
I am Try to login with store procedure ......see my code
Mar 30 2019 5:25 AM
insert into RegisterTable (Name,email,HashPassword,ActivationCode,verify)
values ('qwert','
[email protected]
',HASHBYTES('SHA2_256','12345'),124,0)
CREATE PROCEDURE [dbo].[LoginProcedure]
@Email varchar(50),
@HashPass nchar(32)
AS
SELECT * from RegisterTable
where email=@Email and HashPassword =HASHBYTES('SHA_256',@HashPass)
RETURN 0
Reply
Answers (
5
)
Display image in Win Form selected from specific folder
What is the use of xml file?