Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Updating record
Message
From
18/07/2003 14:29:01
 
 
To
15/07/2003 03:08:50
Keith Payne
Technical Marketing Solutions
Florida, United States
General information
Forum:
ASP.NET
Category:
ADO.NET
Title:
Miscellaneous
Thread ID:
00810009
Message ID:
00811601
Views:
15
SQL PROCEDURE
SET QUOTED_IDENTIFIER ON 
GO
SET ANSI_NULLS ON 
GO

ALTER  Proc UpGpFilter
@Finame varchar(25)= null,
@Finameid int
AS
Update GpFilter

Set Finame = @Finame
Where
Finameid = @Finameid

GO
SET QUOTED_IDENTIFIER OFF 
GO
SET ANSI_NULLS ON 
GO
VB.NET CODE
Private Sub UpdateRecord()
        Try
            Dim mycnn As New SqlConnection(ConnectionString)
            dap1.UpdateCommand = New SqlCommand("UpGpFilter", mycnn)
            With dap1.UpdateCommand
                .CommandType = CommandType.StoredProcedure
                .Parameters.Add("@Finame", SqlDbType.VarChar, 25, "Finame")
                Dim prm1 As SqlParameter = dap1.UpdateCommand.Parameters.Add("@Finameid", SqlDbType.Int)
                prm1.SourceColumn = "Finameid"
                prm1.SourceVersion = DataRowVersion.Original
            End With

            mycnn.Open()
            myds.GpFilter.GetChanges(DataRowState.Modified)
            dap1.Update(myds, "GpFilter")
            mycnn.Close()

        Catch ex As SqlException
            MsgBox(ex.Message, MsgBoxStyle.Critical, "SQL ERROR")

        Catch ex As Exception
            MsgBox(ex.Message, MsgBoxStyle.Critical, "General Error")

        End Try

    End Sub 
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform