CREATE PROCEDURE DeletetblOfficeEquipmentProfileRecord
@OE_ID varchar(11)
AS
BEGIN
DELETE FROM [EOEMS].[dbo].[tblOfficeEquipmentProfile]
WHERE [OE_ID]=@OE_ID
END
RETURN
GO
Above is my sql stored procedure how will I execute in in vb.net 2003
this SP is for delete a records based on an OE_ID chosen on the textbox