打印本文 打印本文 关闭窗口 关闭窗口
VB.NET操作SQL Server完全模块
作者:武汉SEO闵涛  文章来源:敏韬网  点击数31993  更新时间:2007/11/14 12:20:54  文章录入:mintao  责任编辑:mintao
>        Try

            rowsAffected = sqlCommand.ExecuteScalar

        Catch ex As Exception

            Throw New NotSupportedException(ex.Message)

        Finally

            sqlConnection.Close()

        End Try

 

        Return rowsAffected

    End Function

 

    Function ChgFieldByLeftWord(ByVal TableName As String, ByVal FieldName As String, ByVal ParaWord As String, ByVal NewWord As String) As Integer

        Try

            Return UpdateBySQL(TableName, FieldName & "=''''" & NewWord & "''''+right(" & FieldName & ",len(" & FieldName & ")-" & Len(ParaWord) & ")", "Len(" & FieldName & ")>=" & Len(ParaWord) & " and left(" & FieldName & "," & Len(ParaWord) & ")=''''" & ParaWord & "''''")

        Catch ex As Exception

            Throw New NotSupportedException(ex.Message)

        End Try

    End Function

 

 << 上一页  [21] [22] [23] [24] [25] [26] [27] [28] [29]  下一页

打印本文 打印本文 关闭窗口 关闭窗口