我尝试使用以下代码从 eclipse 模拟器 android 连接到 sql 服务器:
String driver = "net.sourceforge.jtds.jdbc.Driver";
Class.forName(driver).newInstance();
String connString = "jdbc:jtds:sqlserver://83.212.240.15:1521/hua;encrypt=fasle;user=xxxxxx;password=xxx;instance=SQLEXPRESS;";
String username = "xxxxx";
String password = "xxxxx";
conn = DriverManager.getConnection(connString,username,password);
Statement stmt = conn.createStatement();
ResultSet reset = stmt.executeQuery("insert into picture values('hi');");
conn.close();
但我有以下错误
Service com.android.exchange.ExchangeService has leaked ServiceConnection com.android.emailcommon.service.ServiceProxy$ProxyConnection@40cebcd0 原来绑定在这里
android.app.ServiceConnectionLeaked: Service com.android.exchange.ExchangeService has leaked ServiceConnection com.android。 emailcommon.service.ServiceProxy$ProxyConnection@40d64ec0 最初绑定
在 android.app.LoadedApk$ServiceDispatcher.(LoadedApk.java:969)
我已经获得了互联网许可,我也将 jtds-1.3.0.jar 放在了 lib 文件夹中。有什么想法吗?
提前致谢