vote up 1 vote down star

Hi guys, I have a problem with Visual C# 2008 express (SP1) connecting to SQL Server 2008 express. The "Add Connection" window (wherever initiated) doesn't list existing sql server and no option for sql server except a compact edition.

Note that, I've got the VWD 2008 express (SP1) on the same machine which shows the window regularly (with SQL server listed) and SQL Server Management studio works fine with the server as well.

I've seen other similar posts, did take some advices: reinstalled the VC#, services run ok, etc... but with no success with VC# so far.

Again, on the same machine the VWD shows the dialog with sql server option regularly, but VC# shows only 3 options in "Change data source" dialog (1. Microsoft Access Database File (OLE DB) 2. Microsoft SQL Server Compact 3.5, 3. Microsoft SQL Server Database File)

Any idea? Thanks in advice, Phil

flag

3 Answers

vote up 0 vote down

SQL 2005 and SQL 2008 Express Editions install themselves as Named Instances.

You should be able to enter ".\SQLEXPRESS" to connect.
The "." is a shortcut for "localhost", and the "SQLEXPRESS" is the Instance Name for SQL Express.

You can verify the instance name in your Services control panel:

  • Start -> Run -> services.msc
  • Scroll down to SQL Server
  • The Instance Name should be in brackets. eg: "SQL Server (SQLEXPRESS)"
link|flag
Will, thanks for the quick response, unfortunately, everything is fine with the server (I checked it out earlier), but looks like something's wrong with the VC#. I also tried to use many variations in Advanced window settings, including .\SQLEXPRESS, MYHOSTNAME\SQLEXPRESS... :( – Phil May 22 at 12:59
Ah, in that case -- have you checked that you can connect using the sqlcmd tools too? eg: C:\Program Files\Microsoft SQL Server\100\Tools\Binn\sqlcmd -S .\SQLEXPRESS – Will Hughes May 22 at 13:33
Yes, I do, with no problem – Phil May 22 at 14:34
vote up 0 vote down

You described option 3 - Microsoft SQL Server Database File, you should be able to use this to point to your .mdf file and it will be able to connect just from this.

link|flag
Hi Cookey, thanks for the response I'm able to point to .mdf file, but I would like (for some reason) to use connection to the server the same way as I do with VWD, if possible. – Phil May 22 at 13:12
vote up 0 vote down

I've got the same problem!! I don't know what it is but i can point it to a .mdf file but i would like to have it connected to the live database... If you find a solution let me know ... I haven't tried uninstalling C# with no luck... Going to try SQL next . Will let you know if it works!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.