如何从Windows Phone 8应用程序连接到远程MySQL数据库?

时间:2013-03-17 11:34:42

标签: mysql database windows-phone-8 remote-access

我正在为Windows Phone 8开发应用程序,我需要从远程MySQL数据库获取用户数据。 Web应用程序也使用此数据库。

这个问题的解决方案是什么?我可以在哪里阅读有关使用Windows Phone 8远程数据存储的一些信息?

2 个答案:

答案 0 :(得分:1)

您可以使用Windows手机的restsharp客户端。它还有完整的文档和nuget安装。继承人http://restsharp.org/

答案 1 :(得分:0)

更好更简单的方法是在服务器端代码(如php)中执行所有数据库操作,并且可以使用查询字符串将信息传递给php文件,并使用echo语句反向传递信息。

var webclient = new WebClient();
webclient.OpenReadAsync(new Uri("http://website.com/filename.php?name=" + myname.Text );
webclient.OpenReadCompleted += new OpenReadCompletedEventHandler(handler);

private void opener(object sender, OpenReadCompletedEventArgs e)
{
    //  throw new NotImplementedException();
    using (var reader = new StreamReader(e.Result))
    {
            string response = reader.ReadLine();

            MessageBox.Show(response);
    }
}