上周四(2012 年 4 月 19 日)我的这段代码运行良好:
Connection conn = null;
Statement inst;
try {
System.out.println("Connected to the database");
Class.forName ("net.sourceforge.jtds.jdbc.Driver");
//217.126.108.151
conn = java.sql.DriverManager.getConnection("jdbc:jtds:sqlserver://localhost:1433/prueba;sa;sa1234");
inst = conn.createStatement();
System.out.println("Connected to the database");
inst.executeUpdate("INSERT INTO TIENDAS (NOMBRE) VALUES ('ZZZZZZZ') ");
conn.close();
} catch (Exception e) {
e.printStackTrace();
}
但在 Android SDK 的最后一次更新后停止工作。
现在我得到这个错误:
java.lang.RuntimeException:找不到消息属性 prop.servertype 的消息资源
有谁知道为什么?
提前致谢。