摘要:
git pull的时候遇到下面的报错。 解决办法如下,然后再执行git pull就会让你输入账号密码。就可以正常使用啦。 阅读全文
摘要:
因为ip未授权,在navicat中执行 grant all privileges on *.* to 'root'@'192.168.1.119' identified by 'root' with grant option; 即可 'root'@'192.168.1.119' 用户名@ip roo 阅读全文
摘要:
在连接字符串后面加上?serverTimezone=UTC 其中UTC是统一标准世界时间。 完整的连接字符串示例:jdbc:mysql://localhost:3306/test?serverTimezone=UTC 或者还有另一种选择:jdbc:mysql://127.0.0.1:3306/tes 阅读全文
摘要:
在用Navicat for MySQL远程连接mysql的时候,出现了 Lost connection to MySQL server at ‘reading initial communication packet', system error: 0 修改my.cnf文件(windows为my.i 阅读全文
摘要:
1、登录mysql服务器 mysql -uroot -p 2、查询mysql服务器安装位置 参考:https://www.cnblogs.com/phpper/p/10773004.html 阅读全文
摘要:
1、写一个监听值变化的类 2、调用该类监听数据 阅读全文
摘要:
1、自定义列(DataGridTemplateColumn) 中间用了一个转换器 visibilityConvert,因为我要实现有url字段时显示图片没有就不显示图片 转换器: 界面引用:<convert:UrlToVisibility x:Key="visibilityConvert"/> 即可 阅读全文