c# Xamarin android select from mssql server? -
c# Xamarin android select from mssql server? -
c# xamarin studio
is possible select , display info mssql database on android phone ?
do use: using system.data.sqlclient;
and connection string same in c# visual studio:
con = new sqlconnection(@"data source=ip,port\\sqlexpress;database=database_name;persist security info=false; uid='user' ; pwd='password"); con.open();
this horrible, horrible idea. not this. exposing database on insecure connection asking trouble.
if need access info mobile client (or remote client) should create webservice deed middleman between remote client , precious data.
http://developer.xamarin.com/guides/cross-platform/application_fundamentals/web_services/
android sql-server xamarin connect
Comments
Post a Comment