sql server 2000 enterprise edition

  • Thread starter Thread starter alf
  • Start date Start date
A

alf

How can i connect directly from my pda to main database (not sql ce edition)
thanks
 
use the SqlClient library and set up your connection string the same way you
would on the desktop.
 
i am doing this you say but appear error i have show in previous message
 
**"I put in other forum"****


how can connect from my vb.net application to sqlserver 2000 in server.

I can connect to sql server ce but i would like connect to central ddbb.
when i try connect using propertly connection string appear this error .
Same connection string in desktop work well.

after 15 seconds execute
....
ocnn.open
...

appear

" a native exception has occurred in sde.exe ...

exceptioncode : 0x8000002
exceptionaddress 0x008c2800
 
You're doing something along these lines?

sqlconnect = new SqlConnection( connectionstring );

sqlconnect.Open();

with a connection string that might be something of the form:

database=Northwind;server=<servername>?



Paul T.
 
i know what was the problemnt i will explaint for may be help other user

1 Sql server configure to use windows user (not sql user)
2 In connection string use Integrated Security =SSIP
3 Use domain\user to connect (user created in both windows and
sqlserver)

thanks
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top