如何使用c#从postgresql数据库中检索双数组?

时间:2016-07-18 17:37:11

标签: c# arrays database postgresql npgsql

我使用C#返回双数组并编写以下代码,但我在Convert.ToDouble[]中收到错误:

            string connectionString = "Server=localhost;port=5432;Database=dbtest;User ID=postgres;Password=123";
        NpgsqlConnection dbcon = new NpgsqlConnection(connectionString);
        dbcon.Open();
        NpgsqlCommand dbcmd = dbcon.CreateCommand();

        string sql = "SELECT fcth FROM test01";
        NpgsqlDataAdapter da = new NpgsqlDataAdapter(sql, dbcon);

        NpgsqlCommand command = new NpgsqlCommand("SELECT fcth FROM tbl");
        NpgsqlDataReader dr = dbcmd.ExecuteReader();

        DataSet ds = new DataSet();
        da.Fill(ds, "tbl");
        List<double[]> arr = new List<double[]>();

        foreach (DataRow row in ds.Tables["tbl"].Rows)
        {
            dr.Read();

            arr.Add(Convert.ToDouble[](row["fcth"].ToString()));  
        }

        for (int j = 0; j < arr.Count; j++)
        {
                try
                {
                    string sql2 = "INSERT INTO tbl2(fh) VALUES ('" + arr[j] + "')";

                    dbcmd.CommandText = sql2;
                    dbcmd.ExecuteNonQuery();
                }
                catch (NpgsqlException ex)
                {

                    if (ex.Data == null)
                    {
                        throw;
                    }
                    else
                    {

                    }
                }
            }

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

我找不到像Convert.ToDouble[]这样的方法。请阅读:https://msdn.microsoft.com/en-us/library/system.convert.todouble(v=vs.110).aspx

首先,如果List<>是数组,您可以转换为Arrayrow["fcth"]

此时,你应该喜欢这个:

Array.ConvertAll(row["fcth"].Split(','), Double.Parse);

这个唯一的例子,rows["fcth"] = "1, 4, 4, 7"将返回数组double类型。

其次,如果您只想将字符串转换为double。

您可以更改为:

arr.Add((Double)row["fcth"]);

arr.Add(double.TryParse(row["fcth"]);