Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
正在开发安卓程序。现在我需要从一台计算机(客户端)远程访问 MSSQL2008R2 到另一台计算机(服务器)。
哪种连接方式最好?
比如, JDBC Driver,Web Service
JDBC Driver
Web Service
如果您为任何操作系统(如 Android、iPhone、Blackberry 等)开发移动应用程序,那么您应该使用 Web 服务从服务器获取数据。
使用的理由Web service。
Web service
如果您使用 Web 服务方法从数据库服务器获取数据保持不变,需要在 Web 服务中写入一次,但如果是 JDBC,则它仅适用于 Java,在其他情况下,您需要搜索其他方式连接到数据库服务器。