Sending files from android to the MS SQL Server 2008
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:
- Create a stored procedure that takes in the csv data
- Create a web service that takes in the csv data(this calls the sp)
- From your android call that web service(this calls the web service)
精彩评论