I am trying to connect my app to Microsoft SQL server 2008 R2 and retrieve data from it. I can connect my app to MySql through out php but can't complete the same task in terms of MSSQL server. I have googled this and this links. But these links don't tell me exactly the procedure that I should follow. Here in this link I found something that tells me to work with asp. But I can't cope the code. As a new one to do so, can anyone please tell me step by step procedure about connecting android app to MSSQL server? Need the solution pretty badly. On the other hand, some of the comments and answer tells me that I should use web service. How should I implement web service in my code. I can retrieve data from MySql source through json parsing via PHP code. Should I use, ASP instead of PHP. Then how should I do it? What I have done as a novice is as below.
Tried out connecting the server directly.
public void query()
{
Log.e("Android"," SQL Connect Example.");
Connection conn = null;
try {
String driver = "net.sourceforge.jtds.jdbc.Driver";
Class.forName(driver).newInstance();
//test = com.microsoft.sqlserver.jdbc.SQLServerDriver.class;
String connString = "jdbc:jtds:sqlserver://192.168.115.16:1433/WSMS_H;user=sa;password=123456;integratedSecurity=true;";
String username = "";
String password = "";
conn = DriverManager.getConnection(connString,username,password);
Log.e("Connection","open");
Statement stmt = conn.createStatement();
ResultSet reset = stmt.executeQuery("select * from dbo.Users");
//Print the data to the console
while(reset.next()){
Log.e("Data:",reset.getString(3));
// Log.w("Data",reset.getString(2));
}
conn.close();
}
catch (Exception e)
{
Log.w("Error connection","" + e.getMessage());
}
}
Which is not a proper way I confess. What I have is a MS SQL server 2008 R2 installed in my local machine. 1433 port working for SQL server. But the connection string returns null.
Can somebody show me what should I do to complete the connection?Thanks for any kind of help.