摘要: C#截图字符串常用的方法有 split 、Substring、Replace、remove等。 split的使用: 1. Split( Char ()) 返回的字符串数组包含此实例中的子字符串(由指定 Unicode 字符数组的元素分隔)。 根据单个分隔字符用split截取。 例如 复制代码代码如下 阅读全文
posted @ 2019-12-26 17:39 王钰 阅读(1541) 评论(0) 推荐(0) 编辑
摘要: delete from tb (where);update tb set string='helloworld' where name='louyujing' and type='1'; 阅读全文
posted @ 2019-12-26 15:30 王钰 阅读(8346) 评论(0) 推荐(0) 编辑
摘要: MySQL安装在服务器上,想要通过远程访问,需要注意以下两点 1.服务器防火墙开放3306端口,方便期间80端口一并开放 在服务器上打开“高级安全WIndows Defender防火墙——入站规则——新建规则——端口——TCP——【80,3306】”。 2.在MySQL中开启远程访问的命令 use 阅读全文
posted @ 2019-12-26 11:18 王钰 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 安装完MysqlZIP版的之后,改好密码今天去用时发现竟然报错 C:\Users\Administrator>mysql -uroot -p Enter password: ****** Welcome to the MySQL monitor. Commands end with ; or \g. 阅读全文
posted @ 2019-12-26 11:10 王钰 阅读(1278) 评论(0) 推荐(0) 编辑
摘要: 键入 mysql -u root -p 登录成功,如若已经忘记密码,查看这篇教程https://www.cnblogs.com/shyw/p/12056493.html 键入 use mysql 键入 update mysql.user set authentication_string=passw 阅读全文
posted @ 2019-12-26 11:02 王钰 阅读(173) 评论(0) 推荐(0) 编辑