access db with pocket pc...

  • Thread starter Thread starter Ciccio
  • Start date Start date
C

Ciccio

have a nice day...
like to object i have that problem...
i wont update,delete and modify an access database from an application
for pocket pc.. the access db are on an desktop pc and the device are
connected with wifi connection...
can i do it? and how?
thank a lot... ;)
 
You could use web services or sockets to talk to a server process on your
desktop PC to perform actions.

Peter
 
I've done just this, written a sync process to sync SQL Mobile with Access
on the desktop. I use Web Services which connects to a managed COM+
component which does the business processing (updating records etc). I use a
COM+ object to do the updating purly to avoid security issues/configuration.
I use the Web Service as the end point so that the sync will work easily
across the internet and it was the only (acceptable) method of connectivity
at the time of development.

Cheers
Simon.
 
Simon Hart ha scritto:
I've done just this, written a sync process to sync SQL Mobile with Access
on the desktop. I use Web Services which connects to a managed COM+
component which does the business processing (updating records etc). I use a
COM+ object to do the updating purly to avoid security issues/configuration.
I use the Web Service as the end point so that the sync will work easily
across the internet and it was the only (acceptable) method of connectivity
at the time of development.

Cheers
Simon.
ok i do it with an web service now searching for some example.. thnks.. :)
 
Back
Top