摘要:
Ubuntu 16.04 amd64 (64bit)(纯净版) 自带python2.7和python3.5 执行"whereis python"查看当前安装的python [root@root ~]# whereis python python: /usr/bin/python2.7 /usr/bi 阅读全文
摘要:
Page NavigationWindow window = new NavigationWindow(); window.Source = new Uri("MainWindow1.xaml", UriKind.Relative); //mainwindow.ShowDialog();//模式,弹 阅读全文
摘要:
直接使用DataGrid.ItemsSource = adp绑定的是一个名为Length的列,显示的是每个项的长度; 需要使用 .Select(x => new { Value = x }).ToList() 才能展示值; private void Button_Click_1(object sen 阅读全文
摘要:
https://docs.microsoft.com/zh-cn/dotnet/api/system.collections.generic.list-1?view=netframework-4.8 MySQLHelper /// <summary> /// 查询_返回一组数 /// </summa 阅读全文
摘要:
1.Sqlserver数据库连接 <connectionStrings> <add name="Conn" connectionString="Provider=MSDAORA;Data Source=demo;User ID=sa;Password=123456;" providerName="S 阅读全文
摘要:
1.在管理NuGet程序包中,选择浏览,下载MySql.Data, 2.在命名空间中引用 using MySql.Data.MySqlClient; 3.配置Configuration文件连接Mysql <?xml version="1.0" encoding="utf-8" ?> <configu 阅读全文
摘要:
C#截图字符串常用的方法有 split 、Substring、Replace、remove等。 split的使用: 1. Split( Char ()) 返回的字符串数组包含此实例中的子字符串(由指定 Unicode 字符数组的元素分隔)。 根据单个分隔字符用split截取。 例如 复制代码代码如下 阅读全文
摘要:
delete from tb (where);update tb set string='helloworld' where name='louyujing' and type='1'; 阅读全文
摘要:
MySQL安装在服务器上,想要通过远程访问,需要注意以下两点 1.服务器防火墙开放3306端口,方便期间80端口一并开放 在服务器上打开“高级安全WIndows Defender防火墙——入站规则——新建规则——端口——TCP——【80,3306】”。 2.在MySQL中开启远程访问的命令 use 阅读全文
摘要:
安装完MysqlZIP版的之后,改好密码今天去用时发现竟然报错 C:\Users\Administrator>mysql -uroot -p Enter password: ****** Welcome to the MySQL monitor. Commands end with ; or \g. 阅读全文