1.问题描述: HttpClint 使用FormUrlEncodedContent 调用接口时 报错 System.UriFormatException: 无效的 URI: URI 字符串太长: 2.解决: using System; using System.Collections.Generic; using System.IO; using System.IO.Compression; using System.Linq; using System.Net.Http; using Syst…
由于group_concat默认的长度是1024,所以要将最大长度修改 首先执行 SET SESSION group_concat_max_len = 10240;#一次查询有效 然后再进行拼接 select line_name,GROUP_CONCAT(CONCAT('[',CONCAT_WS(',',gd_lng,gd_lat),']')) lnglat from dic_busline where sfhd='y' GROUP BY line_name;…