开发者

Sending files from android to the MS SQL Server 2008

开发者 https://www.devze.com 2023-01-15 09:36 出处:网络
I want to send files(.csv) from and开发者_如何学JAVAroidto theMS SQL Server 2008 .Shoud I use HTTPClient ?

I want to send files (.csv) from and开发者_如何学JAVAroid to the MS SQL Server 2008 . Shoud I use HTTPClient ?

How can I do that?


Assuming that you want to move data from client(android) to server(sql server) in some networked environment, then one way could be to:

  1. Create a stored procedure that takes in the csv data
  2. Create a web service that takes in the csv data(this calls the sp)
  3. From your android call that web service(this calls the web service)
0

精彩评论

暂无评论...
验证码 换一张
取 消