i want to thank the people who answered my previous thread..
ii want to know how to creat a stored procedure with insert commands that need to be call from a servlet using callableStatement..
i want to know how to create the stored procedure in sql..
i have two tables login_details(username,password), personal_details(Name,Age,dob)..
With advanced thanks..
Ur's
Rams
Quote:
Originally Posted by subramanian_pks
hi.. guys...
i want to thank the people who answered my previous thread..
ii want to know how to creat a stored procedure with insert commands that need to be call from a servlet using callableStatement..
i want to know how to create the stored procedure in sql..
i have two tables login_details(username,password), personal_details(Name,Age,dob)..
With advanced thanks..
Ur's
Rams
---------------
create procedure sp_insert_login
@.username as char(100),
@.password as char(100)
as
insert into login_details(username,password)
values(@.username,@.password)
No comments:
Post a Comment