将语句插入Datatable

时间:2015-01-09 09:19:21

标签: c# sql datatable

我正在尝试将一个插入语句运行到DataTable中(我这样做,这样语句中的所有函数都将被执行,因此我可以获得预期的值)

    private void insertintoDT(DataTable destination, string InsertStatement)
    {
        SqlCommand comm = new SqlCommand(InsertStatement);
        SqlDataReader reader = new SqlDataReader();

        destination.Load(reader);
    }
}

然后将此DataTable加载到DataGrid中,以便我可以看到要插入的值。我尝试像这样分解插入语句:

    private void breakupInsert(String insert)
    {
        DataTable dt = new DataTable();
        dgvInsert.Rows.Clear();
        string stemp = insert;

        int len = stemp.Length;
        int itemp = 0;
        stemp = stemp.Remove(0, 12);
        itemp = stemp.IndexOf("VALUES") - 1;
        gvtable = stemp.Substring(0, itemp);
        stemp = stemp.Remove(0, itemp + 9);
        int itemcount = stemp.Count(x => x == ',') + 1;
        string[] values = new string[itemcount - 1];
        //populate values
        int h = 0;//Used as a start index
        int itemc = 0; //item index
                for (int k = 0; k < stemp.Length; k++)
                {
                    if (k == stemp.Length - 2)
                    {
                        values[itemc] = ExecuteSQL(stemp.Substring(h, (k + 1) - h));
                        break;
                    }
                    else

                    if (stemp.Substring(k, 2) == (", "))
                    {
                        itemp = stemp.IndexOf(", ");
                        values[itemc] = ExecuteSQL(stemp.Substring(h, k - h));
                        h = k + 2;
                        itemc = itemc + 1;
                        k = k + 1;
                    }
                    else if (stemp.Substring(k, 2) == ("),"))
                    {
                        itemp = stemp.IndexOf("),");
                        values[itemc] = ExecuteSQL(stemp.Substring(h, k - h));
                        h = k + 2;
                        itemc = itemc + 1;
                        k = k + 1;
                    }
                    else if (stemp.Substring(k, 2) == ("',"))
                    {
                        itemp = stemp.IndexOf("',");
                        values[itemc] = ExecuteSQL(stemp.Substring(h, (k - h) + 1));
                        h = k + 2;
                        itemc = itemc + 1;
                        k = k + 1;
                    }

        }
        for (int j = 0; j < values.Length; j++)
        {
            this.dgvInsert.Rows.Insert(j, j + 1, values[j], values[j].Length);
        }

    }

但是当函数在insert语句(例如,强制转换)

中时会中断

有没有办法做到这一点,还是这是一个失败的原因?

澄清: 我本质上试图为用户提供一个可以粘贴SQL语句的文本框,然后这个语句将反映在数据网格中。因此,如果放入insert语句,则数据表将反映正在插入的值。但是没有将它们插入数据库。

1 个答案:

答案 0 :(得分:1)

查询是特定于数据库的,因此解析查询是由特定于数据库的组件完成的,可能在数据库服务器上,也可能是该数据库的ADO.NET驱动程序。

您可以使用SQLite创建内存数据库,因此您的最终用户不必设置单独的数据库(它确实需要您的应用程序附带的SQLite DLL),但是使用它方法强制您使用SQLite方言,如果您尝试在不同的数据库上使用它们,某些查询可能不起作用。它听起来像是最简单的方法。

This answer建议使用实体框架来解析查询,但我不知道它是否可以帮助您更新数据表。我自己没有尝试过,但可能值得一试。