檢查SQL Server登陸和某一資料庫中使用者的函數

來源:互聯網
上載者:User

   前幾天列出了幾個常用的建立SQL server登陸,登入,使用者,角色和組用到的系統預存程序 ,當然還需要檢查某一Connectiongstring字串所在SQL Server的登陸和資料庫的使用者.下面的兩個函數實現了這樣的功能,其實其實質還是利用SQL server的預存程序進行尋找驗證.用到的預存程序是:sp_helpuser.檢測SQL server登陸是檢查[marst]資料庫中的[syslogins]表

  Private Shared Function CheckLogin()Function CheckLogin(ByVal CN As String, ByVal LoginName As String) As Boolean
        Dim sql As String
        Dim strTemp As String
        sql = "Use  [master] "
        sql += " SELECT [name] FROM [syslogins] Where [Name] = '" & LoginName.Replace("'", "''") & "'"
        Try
            strTemp = ExecuteScalar(ProviderType.SQL, CN, CommandType.Text, sql)
            If Not IsNothing(strTemp) Then
                Return True
            Else
                Return False
            End If
        Catch ex As Exception
            Return False
        End Try

    End Function
    Private Shared Function CheckUser()Function CheckUser(ByVal CN As String, ByVal UserName As String) As Boolean
        Dim sql As String
        Dim strttemp As String
        Dim t As DataTable
        Dim dr As DataRow
        Dim sUserName, sLoginName As String

        sql = "Exec [sp_helpuser] "
        Try
            t = ExecuteDataset(ProviderType.SQL, CN, CommandType.Text, sql, "t").Tables("t")
            For Each dr In t.Rows
                sUserName = dr.Item("UserName")
                If IsDBNull(dr.Item("LoginName")) Then
                    sLoginName = ""
                Else
                    sLoginName = dr.Item("UserName")
                End If
                If sLoginName.ToLower = UserName.ToLower And sUserName.ToLower = UserName.ToLower Then
                    Return True
                End If
            Next
        Catch ex As Exception
            Return False
        End Try
        Return False
End Function

其他相關內容

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.