SqlConnection conn = new SqlConnection();
conn.ConnectionString="data source=*;initial catalog=*;User ID=*;Password=*";
conn.Open();
SqlCommand sqlcmd = new SqlCommand(SqlString, conn);
SqlDataReader dr = sqlcmd.ExecuteReader();
How should I use SqlDataReader to get SQL Server values (3 cols and many rows) and turn them into JSON type that Android App can parse it?
Thank you so much!