Webサービスを介してXamarinアプリケーションからSQL Serverにデータを保存します。私はXamarin AndroidをWebサービス経由でSQL Serverに接続しようとしましたが失敗しました。Webサービスを通じてxamarinからSQL Serverと対話する方法は?
ウェブ:
SqlConnection conn = new SqlConnection(@"Data Source=my-PC\SQLEXPRESS;Initial Catalog=remotedb;Integrated Security=True");
SqlCommand com;
public Service1() {
[WebMethod]
public string insert(string name)
{
com = new SqlCommand("insert into dinesh values('" + name + "')", conn);
conn.Open();
com.ExecuteNonQuery();
conn.Close();
return "Hello World";
}
アンドロイド:私は変更する必要があるものか、他の何かが
public class Activity1 : Activity
{
localhost.Service1 suresh = new localhost.Service1();
string dinesh;
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
// Set our view from the "main" layout resource
SetContentView(Resource.Layout.Main);
// Get our button from the layout resource,
// and attach an event to it
Button button = FindViewById<Button>(Resource.Id.MyButton);
EditText e1 = FindViewById<EditText>(Resource.Id.editText1);
button.Click += delegate {
dinesh = suresh.insert(e1.Text);
};
}
}
ありますか?
ありがとうございました。私は試しており、その後にお知らせします。 :D –