xYx

Results 9 issues of xYx

**预先准备** 1. 删除 `~/.config/wechat-devtools` 目录, 2. 正常 **问题描述** 按照README上的流程安装,出现错误 ![2022-07-06 17-14-07 的屏幕截图](https://user-images.githubusercontent.com/57053484/177516093-7c03d525-9c7d-40bf-a3a2-32f71686e30a.png)

bug

execute sql select * from sys_menu where name = '中文'; or select * from sys_menu where like = '%中文%'; sqls: Error 1064: You have an error in your SQL syntax;...

When the reply is in Chinese, the content will not wrap

bug

I want to use [sqlls](https://github.com/joe-re/sql-language-server) smart completion. But their configuration connection information is not compatible. I don't want to maintain two sets of roughly the same connection information. dbee must...

enhancement

```rust pub fn build_dpi_chunk(dpi: u32) -> Vec { let dpm = 39.370_08 * dpi as f32; let rounded_dpm = dpm.round() as u32; let mut data = Vec::new(); data.extend_from_slice(&rounded_dpm.to_be_bytes()); data.extend_from_slice(&rounded_dpm.to_be_bytes()); data.push(1);...