I write the program, it need to take the data in sqlserver using the SqlClient.
but the emulator do not work with sqlclient, and the emulator can connect the internet and surfing the website!
Printable View
I write the program, it need to take the data in sqlserver using the SqlClient.
but the emulator do not work with sqlclient, and the emulator can connect the internet and surfing the website!
It normal running in the pocket pc.
but can't in the emulator(2003,2003SE), the error message is " Additional information: PlatformNotSupportedException ", and highlight objconn.open()...It is difficult to try it, please help!!
Quote:
objconn = New SqlConnection
objconn.ConnectionString = "user id=project;password=123;database=db;server=XXXX.no-ip.com,21"
objconn.Open()
objsc = New SqlCommand(_sql, objconn)
objda = New SqlDataAdapter(objsc)
objda.Fill(dt)
Hi,
this connection string works for me
Persist Security Info=False;Integrated Security=False;Server=delldesktop;initial catalog=Waiter;user id=sa;password=;
Are you sure your sqlserver is running on port 21 - that is the FTP port normally
Pete
also cant work...
my sqlserver was configurated port 21...
I use the sqlserver 2002...
Quote:
Originally Posted by petevick
can u give me which version do u use?
visual studio 2003?
which version ppc emulator ?
sqlserver ?