hi i use sql server 2005 express.
i have connection problem with client to server.
i make surface area configurations. but still have problem.
computers which i use for sql 2005 express
have xp home edition.
i got the problem with connection. when i want to connect to server i got undefined error.
my connection string for 2000
With cnn
.CursorLocation = adUseClient
.ConnectionString = "provider=SQLOLEDB;server=" & server_adi & ";uid=" & Text2.Text & ";pwd=" & Text1.Text & ";database=" & database_adi
.Open
End With
my connection string for 2005 express
With cnn
.CursorLocation = adUseClient
.ConnectionString = "Provider=SQLNCLI;Server=" & server_adi & ";Database=" & database_adi & ";Trusted_Connection=yes;"
.Open
End With
please help me.
i have connection problem with client to server.
i make surface area configurations. but still have problem.
computers which i use for sql 2005 express
have xp home edition.
i got the problem with connection. when i want to connect to server i got undefined error.
my connection string for 2000
With cnn
.CursorLocation = adUseClient
.ConnectionString = "provider=SQLOLEDB;server=" & server_adi & ";uid=" & Text2.Text & ";pwd=" & Text1.Text & ";database=" & database_adi
.Open
End With
my connection string for 2005 express
With cnn
.CursorLocation = adUseClient
.ConnectionString = "Provider=SQLNCLI;Server=" & server_adi & ";Database=" & database_adi & ";Trusted_Connection=yes;"
.Open
End With
please help me.