favorite
How to give connection string in monodroid App.
I giving Normal connection string on local like this & its working fine ,
(
const string CONNECTION_STRING = @"data source=192.168.1.134initial catalog=ExamhookResultspersist security info=trueuser id=sapassword=sa1"
SqlConnection con = new SqlConnection(CONNECTION_STRING)
)
but I have doubt for live connection string(which is I used for live web application) can it will work fine on mobile APP I hope any one help me.
Thank You!!