Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP .Net Security > Can't connect to DB

Reply
Thread Tools

Can't connect to DB

 
 
Sandy
Guest
Posts: n/a
 
      10-21-2003
Hi!

I am trying to open a connection to a SQL Server database
using just the Framework, Notepad and the browser. I keep
getting the error message "SQL Server does not exist or
access is denied."

I am using the following for the connection:

Dim conPubs As SqlConnection
ConPubs = New SqlConnection ("Data
Source=localhost;Initial Catalog=PUBS;Integrated
Security=SSPI;")
ConPubs.Open()

In Page_Load of the script. I can take the same notepad
aspx page and put it into Visual Studio .NET and it
connects without a problem.

I'm using Windows Server 2003 and my SQL Server 2000 is
set up with windows authentication. I am not on a
network - just studying this stuff on my home computer.

THIS IS DRIVING ME CRAZY! I have read many many pages on
security and nothing seems to be giving me what I need. I
would guess on some level there is probably some stupid
little box that has to be checked or unchecked . . . Where
ever that could be . . .

Any help anyone can give me will be immensely appreciated!

Sandy

 
Reply With Quote
 
 
 
 
Andrea D'Onofrio
Guest
Posts: n/a
 
      10-22-2003
Hi,
have you tried with this connection string?
"Data Source=local;Initial Catalog=PUBS;Integrated Security=SSPI;"

I changed the "Data Source=localhost" with "Data Source=local".

Andrea

"Sandy" <> wrote in message
news:0a5001c39811$47c00b60$...
> Hi!
>
> I am trying to open a connection to a SQL Server database
> using just the Framework, Notepad and the browser. I keep
> getting the error message "SQL Server does not exist or
> access is denied."
>
> I am using the following for the connection:
>
> Dim conPubs As SqlConnection
> ConPubs = New SqlConnection ("Data
> Source=localhost;Initial Catalog=PUBS;Integrated
> Security=SSPI;")
> ConPubs.Open()
>
> In Page_Load of the script. I can take the same notepad
> aspx page and put it into Visual Studio .NET and it
> connects without a problem.
>
> I'm using Windows Server 2003 and my SQL Server 2000 is
> set up with windows authentication. I am not on a
> network - just studying this stuff on my home computer.
>
> THIS IS DRIVING ME CRAZY! I have read many many pages on
> security and nothing seems to be giving me what I need. I
> would guess on some level there is probably some stupid
> little box that has to be checked or unchecked . . . Where
> ever that could be . . .
>
> Any help anyone can give me will be immensely appreciated!
>
> Sandy
>



 
Reply With Quote
 
 
 
 
Sandy
Guest
Posts: n/a
 
      10-22-2003
Hi Andrea!

Thanks for replying.

I did find out what the problem was from Chris at
the .framework.adonet site. Turns out there were two
things wrong - I had to:

1. Switch off anonymous access on Directory Security tab
in IIS (the I_User part), click okay.
Go back to Directory security. It now reads "Use the
following Windows user account . . . with reference to the
Windows user name and password. Check box in front of
Enable Anonymous Access.
2. Insert <identity impersonate="true" /> in xml page.

Thought I would include this in case you come across it in
the future, you can pass the word on to dummies like me.

Thanks again.

Sandy

>-----Original Message-----
>Hi,
>have you tried with this connection string?
>"Data Source=local;Initial Catalog=PUBS;Integrated

Security=SSPI;"
>
>I changed the "Data Source=localhost" with "Data

Source=local".
>
>Andrea
>
>"Sandy" <> wrote in

message
>news:0a5001c39811$47c00b60$...
>> Hi!
>>
>> I am trying to open a connection to a SQL Server

database
>> using just the Framework, Notepad and the browser. I

keep
>> getting the error message "SQL Server does not exist or
>> access is denied."
>>
>> I am using the following for the connection:
>>
>> Dim conPubs As SqlConnection
>> ConPubs = New SqlConnection ("Data
>> Source=localhost;Initial Catalog=PUBS;Integrated
>> Security=SSPI;")
>> ConPubs.Open()
>>
>> In Page_Load of the script. I can take the same notepad
>> aspx page and put it into Visual Studio .NET and it
>> connects without a problem.
>>
>> I'm using Windows Server 2003 and my SQL Server 2000 is
>> set up with windows authentication. I am not on a
>> network - just studying this stuff on my home computer.
>>
>> THIS IS DRIVING ME CRAZY! I have read many many pages

on
>> security and nothing seems to be giving me what I

need. I
>> would guess on some level there is probably some stupid
>> little box that has to be checked or unchecked . . .

Where
>> ever that could be . . .
>>
>> Any help anyone can give me will be immensely

appreciated!
>>
>> Sandy
>>

>
>
>.
>

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Can connect to wireless but can not connect to internet Lucy Wireless Networking 2 09-23-2006 11:47 AM
Can connect to wireless but can not connect to internet Lucy Wireless Networking 0 09-22-2006 11:52 AM
Can connect to wireless but can not connect to internet Lucy Wireless Networking 0 09-22-2006 11:03 AM
Could Not Connect To SMTP Host Connection Failed -- Software caused connection abort: connect kishore@novelteam.com Java 3 11-16-2005 03:33 PM
Can't connect to local machine with anything except IE Other browsers can't connect without password Otis Mukinfus ASP .Net 3 07-08-2005 03:54 AM



Advertisments