I
Ilya Tumanov [MS]
Good, that leaves only incorrect connection string. Your connection string
using named instance "Server=VES\SQL2K" which is not going to work as
devices do not support named pipes (that's how it connects to named
instance - by connecting to named pipe). Use something like this instead:
"Server=VES, 1433;"
If you have several instances you would need to specify port number desired
instance is listening on instead of instance name. That works because only
once instance can listen on a port.
Also see this:
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=335660&SiteID=1
--
Best regards,
Ilya
This posting is provided "AS IS" with no warranties, and confers no rights.
*** Want to find answers instantly? Here's how... ***
1. Go to
http://groups-beta.google.com/group/microsoft.public.dotnet.framework.compactframework?hl=en
2. Type your question in the text box near "Search this group" button.
3. Hit "Search this group" button.
4. Read answer(s).
using named instance "Server=VES\SQL2K" which is not going to work as
devices do not support named pipes (that's how it connects to named
instance - by connecting to named pipe). Use something like this instead:
"Server=VES, 1433;"
If you have several instances you would need to specify port number desired
instance is listening on instead of instance name. That works because only
once instance can listen on a port.
Also see this:
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=335660&SiteID=1
--
Best regards,
Ilya
This posting is provided "AS IS" with no warranties, and confers no rights.
*** Want to find answers instantly? Here's how... ***
1. Go to
http://groups-beta.google.com/group/microsoft.public.dotnet.framework.compactframework?hl=en
2. Type your question in the text box near "Search this group" button.
3. Hit "Search this group" button.
4. Read answer(s).