Connect PDA To SqlServer

  • Thread starter Thread starter Paul
  • Start date Start date
P

Paul

Hi,

I have to make an application for a PDA to connect to WIFI on
SqlSerrver 2008
How can I do?

Thanks
 
Paul skrev:
Hi,

I have to make an application for a PDA to connect to WIFI on
SqlSerrver 2008
How can I do?
The same way as you would connect a sqlserver on a desktop application.

Setting up the network connection itself is, as on a desktop
application, an OS configuration task, not the application.
 
Paul skrev:> Hi,


The same way as you would connect a sqlserver on a desktop application.

Setting up the network connection itself is, as on a desktop
application, an OS configuration task, not the application.

Hi,
But in .NET 2.0 compact framework i Don't have a
System.Data.SqlCLient?
How I make to connect a SqlServer?
 
Paul skrev:
Hi,
But in .NET 2.0 compact framework i Don't have a
System.Data.SqlCLient?
How I make to connect a SqlServer?

Use SqlCeClient

Any reason why you stick to CF 2.0?
 
Hi,
But in .NET 2.0 compact framework i Don't have a
System.Data.SqlCLient?
How I make to connect a SqlServer?

you use SqlCEClient

you should have already a connection to the server.

Also note that there is a NG for the compact framework, you might find
more suitable questions & answers there
 
Paul skrev:





Use SqlCeClient

Any reason why you stick to CF 2.0?

It might be reasonable, most of the current devices currently ship
with CF 2.0 , I do not know of any that ships already with the 3.5
framework
 
Ignacio Machin ( .NET/ C# MVP ) skrev:
It might be reasonable, most of the current devices currently ship
with CF 2.0 , I do not know of any that ships already with the 3.5
framework

Depending on your setup CF 3.5 will be automatically installed if required.
 
Ignacio Machin ( .NET/ C# MVP ) skrev:





Depending on your setup CF 3.5 will be automatically installed if required.

If deployed from VS yes, but sometimes you need to give the user
a .cab file to be installed on the device, in this case you do not
want that.
 
Ignacio Machin ( .NET/ C# MVP ) skrev:
If deployed from VS yes, but sometimes you need to give the user
a .cab file to be installed on the device, in this case you do not
want that.

As I said: It depends on you setup.

A proper installation should be able to check if CF 3.5 (which also is
distributed as a cab file) is needed.

It's just a question of how smart your installation is.
 
Back
Top