Visual Basic.NET - Procedimientos almacenados

 
Vista:

Procedimientos almacenados

Publicado por Carlos (4 intervenciones) el 09/06/2007 01:29:04
Hola a todos, ojalá les vaya en todo este fin de semana.

Me estoy pasando a Visual Basic 2005, he hecho un procedimiento usando SQLExpress 2005 .

USE Ficha
-- ================================================
-- Template generated from Template Explorer using:
-- Create Procedure (New Menu).SQL
--
-- Use the Specify Values for Template Parameters
-- command (Ctrl-Shift-M) to fill in the parameter
-- values below.
--
-- This block of comments will not be included in
-- the definition of the procedure.
-- ================================================
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author: <Author,,Name>
-- Create date: <Create Date,,>
-- Description: <Description,,>
-- =============================================
CREATE PROCEDURE SP_MODIFICAR_ESTADO
-- Add the parameters for the stored procedure here
@id_estado bigint,
@estado varchar(50)
AS
BEGIN
UPDATE TEstado
SET id_estado = @id_estado, estado = @estado
WHERE (id_estado = @id_estado)
END

¿Cuál es el código para Visual Basic .NET 2005, usando parámetros para modificar, eliminar e ingresarlé nuevos datos?

Cualquier ayuda será bienvenida.
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder