Quantcast
Channel: CodeSection,代码区,网络安全 - CodeSec
Viewing all articles
Browse latest Browse all 12749

Stored Procedure for Account Creation / Update / Erase &am ...

$
0
0

I'm new to developing stored procedures so in my attempt I got a bit mind-boggled. I understand basically what they are conceptually, but having issues when implementing. For reference, I'm hand-coding, but intend to use SQL Server, ASP.NET, and C# technologies.

The basic idea is for a user to create their own user account, update their information as they see fit, delete their account, and authenticate the information as necessary (usernames&passwords, account information, etc). I presume this must be done with 4 different stored procedures: createAccount , modAccount , delAccount , authentAccount .

My understanding is that the C#/ASP should be doing the actual data collection and then transferring the data to SQL for insertion into the database. Please correct me if I'm wrong or if there's a more efficient method (speed is extremely important for this).

Getting started with the first stored procedure (create), I coded this:

CREATE PROC createAccount AS INSERT INTO Customer (cssn, first_name, middle_name, last_name, company, address, phone_number, email, account, occupation, nationality, social, successful_invites) VALUES () GO

What do I put in for values? The variable that's used on the C# side?

I'm also not sure how I should incorporate security in this space and security is going to be important as well.

If you could provide examples with your explanation, that would be EXTREMELY helpful.

Here's the basic form of your SP (first 3 columns shown):

create procedure createAccount ( @cssn varchar(100), @first_name varchar(100), @last_name varchar(100), ... -- remaining columns ) as begin insert into Customer (cssn, first_name, last_name, ... ) values (@cssn, @first_name, @last_name, ... ) end


Viewing all articles
Browse latest Browse all 12749

Latest Images

Trending Articles





Latest Images