1

我有适用于 SQL 的 ac#win 应用程序。我想开发一个发送查询以赢得应用程序并将查询结果返回到 Android 应用程序的 Android 应用程序。我没有开发任何安卓应用。

1.有什么方法可以直接连接到我的SQL数据库?

2.如何将信息从安卓应用程序发送到PC?

3.如何通过win app检测安卓设备?

4

2 回答 2

0

您需要创建 Web 服务并从您的 android 应用程序调用它们。请查看此链接,该链接将为您提供有关在 android中调用 web 服务的信息How to call a RESTful web service from Android?

于 2013-09-03T12:13:48.020 回答
0
1.Is there any way that I connect to my SQL database directly?

不,没有办法直接访问 SqlServer ...,您必须创建一个 web 服务才能与 sql server 进行通信。

2.How send info from android app to PC? 

使用该 WebService 和 url,您可以在 Android 应用程序中调用 http Post/Get 并使用相关的 WebService 并将您的数据发送到服务器并从服务器获取正确的数据。为了在此处实施此类行为(StackOverFlow),您可以搜索大量链接。

3.How detect android device from win app?

如果我做对了,您可以在 Android SDK 中添加 google usb 驱动程序,然后 Eclipse/Netbeans 或其他 IDE 可以检测到您的 android 设备。

于 2014-07-20T10:05:16.707 回答