Hi, i have a problem connecting sql server in release mode, i get error :
"SqlServer does not exist or Connection Refused"

In debug mode (using Shared runtime ) i have no problem to connect, 

here is my code

string connectionString = "Data Source=192.168.2.123,1433;Initial
Catalog=Pos;Persist Security Info=True;User ID=user;Password=password";
 
using (SqlConnection  sqlcon = new SqlConnection(connectionString))
{
                        
 sqlcon.Open();
                        
 SqlCommand sqlcmd = new SqlCommand("SELECT Count(*) FROM Terminal",
sqlcon);
                        
 string value = sqlcmd.ExecuteScalar().ToString();
}

Its couruisly i only get this error when i not use SharedRuntime (release
Mode)

help please.

--
View this message in context: 
http://mono-for-android.1047100.n5.nabble.com/Problem-Connection-Sqlserver-in-Release-Mode-tp4912877p4912877.html
Sent from the Mono for Android mailing list archive at Nabble.com.
_______________________________________________
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid

Reply via email to