-
sql connect
I need some help on the following problem. When I create a windows application and run it on a desktop the following code works. But when I create a Win CE application and run the following on a PDA I get "server doesnt exist ...".
Dim oSQLConn As Data.SqlClient.SqlConnection = New Data.SqlClient.SqlConnection()
oSQLConn.ConnectionString = "Data Source=66.69.4.21\SQLEXPRESS;Initial Catalog=ScanIt;User Id=sa;Password=12345;"
oSQLConn.Open()
Thanks,
Nelson
-
Re: sql connect
Hi,
try something like Persist Security Info=False;Integrated Security=False;Server=delldesktop,39250;initial catalog=SunlightStock;user id=sa;password=;
I wrote an article here on accessing a remote database from a PPC
Pete