ネットワーク上にある SQL Server 2008 r2 からデータを取得する Android アプリケーションを作成したいと考えています。同じことをするために次のコードを試しました:
public void GetConnection()
{
try
{
Class.forName("net.sourceforge.jtds.jdbc.Driver").newInstance();
Log.w("Class Loaded", "class loaded");
String Connection1="jdbc:jtds:sqlserver://xxxxxxxx:1433/xxxxxxx;encrypt=fasle;instance=SQLEXPRESS;";
Log.w("Connection Loaded", "Connection Loaded");
con=DriverManager.getConnection(Connection1,"sa","xxxxx");
Log.w("Connection Created", "Connection Created");
}
catch(Exception e)
{
}
}
サーバーに接続できますが、データを取得できません。
私はこれを正しい方法でやっていますか?同じことをする他の方法はありますか?