0

I'm want to save some datas on an online db. How can I connect to an online database (SQLSERVER) on windows phone 8 ?
Thank you.

Crono
  • 10,211
  • 6
  • 43
  • 75

1 Answers1

1

Dont connect directly to a database from a mobile phone. Use webservices either SOAP or REST. You are opening a can of worms by exposing your database directly to the internet.

Also if you want to expand and include other phones i.e. iPhone and Android to your database then you are going to have lots of different code to maintain.

See this answer Android access to remote SQL database for more information about this.

Community
  • 1
  • 1
Namphibian
  • 12,046
  • 7
  • 46
  • 76