Hi All
I am trying to use sqlclient from Pocket PC app I am developing for connecting to SQL Server 2005 database on server.
I have referance to sqlclient.
Code looks like as under..

SqlConnection s_Conn;
s_Conn = new SqlConnection("Persist Security Info=False;Integrated Security=False;Server=xxx.xxx.xx.xx,xxxx;database=xxxxxx;user id=xxxx;password=xxxx;");
s_Conn.Open();

I started app in Pocket PC Emulator SE.
But I getting following error
Sql Server does not exists or access denied.
All user id , password etc are correct still I am not able to open connection.

Please help resolving this.
Thanks in advance.