У меня проблема с установлением соединения с локальным SQL Server 2008 R2,
, вот код:
System.out.println("MySQL Connect Example.");
Connection conn = null;
String url = "jdbc:jtds:sqlserver://192.168.2.101:1433/INSERTGT";
String dbName = "podmiot";
String driver = "net.sourceforge.jtds.jdbc.Driver";
String userName = "user";
String password = "pass";
try {
Class.forName(driver).newInstance();
conn = DriverManager.getConnection(url+dbName,userName,password);
System.out.println("Connected to the database");
int duration = Toast.LENGTH_SHORT;
Toast.makeText(getApplicationContext(), "Connected to the database", duration);
conn.close();
System.out.println("Disconnected from database");
EditText edit1 = (EditText)findViewById(R.id.editText1);
edit1.setText("Disconnected from database");
} catch (Exception e) {
e.printStackTrace();
TextView edit1 = (TextView)findViewById(R.id.exception);
edit1.setText("Problem: " + e.toString());
}
ОШИБКА:
при попытке установить соединениеЯ получаю сообщение об ошибке: java.sql.SQLException: Network error IOException: localhost/127.0.0.1:1433 - connection refused.
Извините за мой английский ... :) Спасибо за помощь