Microsoft KB Archive/234268: Difference between revisions

From BetaArchive Wiki
(importing KB archive)
 
m (Text replacement - """ to """)
 
Line 83: Line 83:
<pre class="codesample">Private Sub Form_Load()
<pre class="codesample">Private Sub Form_Load()


Set SQL7 = CreateObject(&quot;SQLDMO.SQLServer&quot;)
Set SQL7 = CreateObject("SQLDMO.SQLServer")


' Performs standard login
' Performs standard login
Line 89: Line 89:
With SQL7
With SQL7
.LoginSecure = FALSE
.LoginSecure = FALSE
.Connect &quot;(local)&quot;, &quot;sa&quot;, &quot;&quot;
.Connect "(local)", "sa", ""
Debug.Print .TrueLogin
Debug.Print .TrueLogin
.DisConnect
.DisConnect
Line 99: Line 99:
With SQL7
With SQL7


         .Name = &quot;(local)&quot;
         .Name = "(local)"
         .LoginSecure = FALSE
         .LoginSecure = FALSE
         .Login = &quot;sa&quot;
         .Login = "sa"
         .Password = &quot;&quot;
         .Password = ""
         .Connect
         .Connect
         Debug.Print .TrueLogin
         Debug.Print .TrueLogin

Latest revision as of 13:45, 21 July 2020

Knowledge Base


FIX: SQLDMO - .Login and .Password Properties are Ignored with .LoginSecure = FALSE

Article ID: 234268

Article Last Modified on 3/14/2006



APPLIES TO

  • Microsoft SQL Server 7.0 Standard Edition
  • Microsoft SQL Server 6.5 Standard Edition



This article was previously published under Q234268

BUG #: 55770 (SQLBUG_70)

SYMPTOMS

In a SQL Distributed Management Objects (DMO) program with .LoginSecure set to FALSE, the .Login and .Password properties are ignored and a trusted connection is made.

If login and password parameters are given with the .Connect, a standard connection is made when .LoginSecure is set to FALSE (as expected).

WORKAROUND

Specify login and password parameters with .Connect instead of setting them as .Login and .Password.

STATUS

Microsoft has confirmed this to be a problem in SQL Server 7.0. This problem has been corrected in U.S. Service Pack 2 for Microsoft SQL Server 7.0. For more information, click the following article number to view the article in the Microsoft Knowledge Base:

254561 INF: How to Obtain Service Pack 2 for Microsoft SQL Server 7.0 and Microsoft Data Engine (MSDE) 1.0


For more information, contact your primary support provider.

MORE INFORMATION

Here is sample code that demonstrates the problem and the workaround:

Private Sub Form_Load()

Set SQL7 = CreateObject("SQLDMO.SQLServer")

' Performs standard login

With SQL7
.LoginSecure = FALSE
.Connect "(local)", "sa", ""
Debug.Print .TrueLogin
.DisConnect

End With

' Makes trusted connection even though LoginSecure is FALSE

With SQL7

        .Name = "(local)"
        .LoginSecure = FALSE
        .Login = "sa"
        .Password = ""
        .Connect
        Debug.Print .TrueLogin
        .DisConnect

    End With

    Set SQL7 = Nothing

End Sub
                

Keywords: kbbug kbfix KB234268