在数据库中打开不同的表

时间:2014-08-04 15:11:35

标签: c# mysql

所以我在一个名为“MyDB”的MySQL数据库中有3个不同的表,里面的表是table1,table2,table3。这是我的代码来查询数据库中的3个表,但它一直在破坏,我无法弄清楚原因。为Google Maps Javascript API v3创建此功能。

private static IEnumerable<HeatMapDataElement> QueryHeatMapDataFromDatabase(string reqDate, string reportType)
    {
        const string connectionString = "connection_credentials";
        var ds = new DataSet();
        var elements = new List<HeatMapDataElement>();
        var conn = new MySqlConnection(connectionString);
        MySqlCommand cmd;
        var da = new MySqlDataAdapter();
        conn.Open();
        try
        {
            cmd = conn.CreateCommand();
            cmd.CommandTimeout = 30;
            cmd.CommandText =
                "select RequestHour, longitude, latitude, count(requesttime) as Weight from MyDB.table1 || MyDB.table2 || MyDB.table3 where method=@ReportType and requestdate = date(@RequestDate) and longitude is not null and latitude is not null and requesthour is not null group by RequestHour, longitude, latitude";
            cmd.Parameters.AddWithValue("@ReportType", reportType);
            cmd.Parameters.AddWithValue("@RequestDate", reqDate);
            da.SelectCommand = cmd;
            da.Fill(ds);

            if (ds.Tables.Count > 0 && ds.Tables[0].Rows.Count > 0)
            {
                elements.AddRange(from DataRow dr in ds.Tables[0].Rows
                                  select new HeatMapDataElement()
                                      {
                                          Latitude = Double.Parse(dr["latitude"].ToString()), Longitude = Double.Parse(dr["longitude"].ToString()), Hour = int.Parse(dr["RequestHour"].ToString()), Weight = int.Parse(dr["Weight"].ToString())
                                      });
            }
        }
        catch (Exception ex)
        {
            throw ex; //breaks here <-------
        }
        finally
        {
            conn.Close();
            da = null;
            cmd = null;
        }
        return elements.AsEnumerable();
    }

错误是:您的SQL语法有错误;检查与MySQL服务器版本对应的手册,以便在'||附近使用正确的语法MyDB.table2 where method ='Table 2',requestdate ='at line 1

1 个答案:

答案 0 :(得分:1)

你正在混淆C#代码和SQL代码。 AFAIK管道运算符只能在mysql中用于连接列而不是表格,即使这样,默认情况下它也被禁用,所以我认为你需要使用INNER JOIN

如果您正在阅读3个表,那么您将在3个表之间进行内部联接,如下所示:

 select * from table1 inner join table2 on table1.key = table2.key