i have on procedure named as VouMasterEntry
that is :-
now when i m inserting the data into the procedure through then it raises one error :-
Incorrect Syntax Near "/"
may be its of date which i m entering through vb
but i can not find the solution
plz help
that is :-
Code:
Create PROCEDURE [dbo].[VouMasterEntry]
-- Add the parameters for the stored procedure here
@VouNum int,
@CustID nvarchar(30),
@VouCat char(10),
@VouType Char(15),
@Seldate smalldatetime
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
-- Insert statements for procedure here
Insert A_VouMaster(VouNum,CustId,VouCat,VouType,EntryDate)
values (@VouNum,@CustID,@VouCat,@VouType,GETDATE())
END
Incorrect Syntax Near "/"
may be its of date which i m entering through vb
but i can not find the solution
plz help
Comment