SyncFusion到SQL连接并在仪表板上显示

时间:2016-05-16 20:34:13

标签: syncfusion

我只是想知道是否有可能使用SyncFusion连接到SQL表,并在前端以枢轴的形式显示表。我正在使用TypeScript进行编码。如果我需要使用,我也可以使用C#。如果是,请告诉我如何在SyncFusion和SQL表之间建立连接。

对此有任何帮助表示赞赏。

提前致谢。

此致 拉加

1 个答案:

答案 0 :(得分:0)

使用SyncFusion与SQL的连接可以通过使用下面的代码片段来实现。

            DataSet ds = new DataSet();
            //In below provide full path of your database(*.sdf) location.
            string conStringforDB = HttpContext.Current.Server.MapPath("Northwind.sdf").Split(new string[] { "\\wcf" }, StringSplitOptions.None)[0] + "\\Northwind.sdf";
            SqlCeConnection con = new SqlCeConnection(conStringforDB);

                con.Open();
                SqlCeCommand cmd = new SqlCeCommand(@"SELECT Top(100) [Order ID], [Product ID], [Unit Price], Quantity
                                                      FROM [Order Details] ", con);
                SqlCeDataAdapter da = new SqlCeDataAdapter(cmd);


                da.Fill(ds);

                //Creation of DataView
                DataView dataView = new DataView(ds.Tables[0]);