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
ahmed fahd
NA
58
45.9k
error of procedure or function has too many arguments
Jan 17 2013 4:24 PM
this is the procedure
ALTER PROCEDURE dbo.Attendance_Table_Update
@State_ nvarchar(50),@emp_id int,@Day_Dat date
AS
UPDATE Attendance_Table
SET State_ = @State_
WHERE (Emp_ID = @emp_id) AND (Day_Dat = @Day_Dat)
this is the usage of it
command.CommandType = CommandType.StoredProcedure
command.CommandText = "attendance_table_update"
command.Connection = con
command.Parameters.AddWithValue("@emp_id", b._emp_num)
command.Parameters.AddWithValue("@state_", b._emp_situation)
command.Parameters.AddWithValue("@day_dat", b._day_date)
con.Close()
con.Open()
command.ExecuteNonQuery()
Return True
con.Close()
'End Try
Return True
Reply
Answers (
3
)
Checking Array Element by Element Picture
how to restrict or fix the words/character length-in-textbox