G
Giuseppe Pezzella
Dear friend, I'm using MSDE and VB.Net
My problem is that when try to connect at database message box say me: "SQL
server don't exist or denide access".
Now:
I have reistall Msdn but nothing is changed
I have manually change login autentication mode from Windows NT to SQL
(article 285097) but nothing is changed
I have try many string connection mode. This is the last:
Imports System.Data.SqlClient
..
..
Try
Dim conn As New SqlConnection("Server=Home/VSdotNET; Database=master; User
Id=sa; Password=;")
conn.Open()
If (conn.State = ConnectionState.Open) Then
MessageBox.Show("Connection opened successfully")
End If
conn.Close()
Catch ex As SqlException
MessageBox.Show(ex.Message)
End Try
My question is:
How I can verify the correct installation and functionality of MSDE ( I have
WinXP)
How I can set Login and Password on MSDE so to be shure of their value?
My problem is that when try to connect at database message box say me: "SQL
server don't exist or denide access".
Now:
I have reistall Msdn but nothing is changed
I have manually change login autentication mode from Windows NT to SQL
(article 285097) but nothing is changed
I have try many string connection mode. This is the last:
Imports System.Data.SqlClient
..
..
Try
Dim conn As New SqlConnection("Server=Home/VSdotNET; Database=master; User
Id=sa; Password=;")
conn.Open()
If (conn.State = ConnectionState.Open) Then
MessageBox.Show("Connection opened successfully")
End If
conn.Close()
Catch ex As SqlException
MessageBox.Show(ex.Message)
End Try
My question is:
How I can verify the correct installation and functionality of MSDE ( I have
WinXP)
How I can set Login and Password on MSDE so to be shure of their value?