我正在通过WCF服务在SQL中插入和显示数据到一个图表(使用Web Form或Highchart)。我能够从SQL获取数据到WCF服务,但我不知道如何将其显示到图表中。我知道使用Web Form我可以直接将数据从SQL绑定到图表,但是赋值的目的是通过WCF服务显示数据。这是我的代码: TempService:
public DataSet GetTemp()
{
SqlConnection con = new SqlConnection();
con.ConnectionString = "server=DUCPC\\SQLEXPRESS;database=Temprature;user=sa;password=123456";
SqlDataAdapter da = new SqlDataAdapter("select * from RoomTemp",con);
DataSet ds = new DataSet();
da.Fill(ds);
return ds;
}
将数据绑定到Web窗体中的图表的代码:
protected void Page_Load(object sender, EventArgs e)
{
TempService.TempServiceClient tsc = new TempService.TempServiceClient();
DataSet ds = tsc.GetTemp();
TempChart.DataSource = ds;
TempChart.DataBind();
}
当然上面的代码不起作用。任何人都可以帮助修复上面的代码吗?有没有一种简单的方法将数据插入SQL数据库?任何帮助表示赞赏:)