摘要: Ubuntu 16.04 amd64 (64bit)(纯净版) 自带python2.7和python3.5 执行"whereis python"查看当前安装的python [root@root ~]# whereis python python: /usr/bin/python2.7 /usr/bi 阅读全文
posted @ 2020-01-28 15:42 王钰 阅读(5097) 评论(0) 推荐(0) 编辑
摘要: Page NavigationWindow window = new NavigationWindow(); window.Source = new Uri("MainWindow1.xaml", UriKind.Relative); //mainwindow.ShowDialog();//模式,弹 阅读全文
posted @ 2019-12-31 15:02 王钰 阅读(2017) 评论(0) 推荐(0) 编辑
摘要: 直接使用DataGrid.ItemsSource = adp绑定的是一个名为Length的列,显示的是每个项的长度; 需要使用 .Select(x => new { Value = x }).ToList() 才能展示值; private void Button_Click_1(object sen 阅读全文
posted @ 2019-12-30 17:06 王钰 阅读(728) 评论(0) 推荐(0) 编辑
摘要: https://docs.microsoft.com/zh-cn/dotnet/api/system.collections.generic.list-1?view=netframework-4.8 MySQLHelper /// <summary> /// 查询_返回一组数 /// </summa 阅读全文
posted @ 2019-12-30 16:42 王钰 阅读(524) 评论(0) 推荐(0) 编辑
摘要: 1.Sqlserver数据库连接 <connectionStrings> <add name="Conn" connectionString="Provider=MSDAORA;Data Source=demo;User ID=sa;Password=123456;" providerName="S 阅读全文
posted @ 2019-12-27 11:15 王钰 阅读(952) 评论(0) 推荐(0) 编辑
摘要: 1.在管理NuGet程序包中,选择浏览,下载MySql.Data, 2.在命名空间中引用 using MySql.Data.MySqlClient; 3.配置Configuration文件连接Mysql <?xml version="1.0" encoding="utf-8" ?> <configu 阅读全文
posted @ 2019-12-27 11:07 王钰 阅读(1964) 评论(0) 推荐(1) 编辑
摘要: 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) 编辑