摘要: 错误:ERROR 1130: Host '192.168.1.3' is not allowed to connect to thisMySQL serve 错误1130:主机192.168.1.3”不允许连接到thismysql服务 原因:被连接的数据不允许使用 192.168.1.3访问,只允许 阅读全文
posted @ 2020-07-03 14:49 二哈先森 阅读(127) 评论(0) 推荐(0)
摘要: 调整这两个属性 ShowIndicator="False" ShowGroupPanel="False" 阅读全文
posted @ 2020-07-03 10:43 二哈先森 阅读(1081) 评论(0) 推荐(0)
摘要: 设置 RowHeaderWidth="0" 阅读全文
posted @ 2020-07-02 16:56 二哈先森 阅读(834) 评论(0) 推荐(0)
摘要: 1.查询数据库中的所有数据库名: SELECT Name FROM Master..SysDatabases ORDER BY Name2.查询某个数据库中所有的表名: SELECT Name FROM SysObjects Where XType='U' ORDER BY Name3.查询表结构信 阅读全文
posted @ 2020-05-20 09:46 二哈先森 阅读(1166) 评论(0) 推荐(0)
摘要: byte[] bt = new byte[4]; RNGCryptoServiceProvider provider = new RNGCryptoServiceProvider(); provider.GetBytes(bt); int seed = BitConverter.ToInt32(bt 阅读全文
posted @ 2020-03-22 16:14 二哈先森 阅读(261) 评论(0) 推荐(0)