宏盛

2021年11月22日

IDEA解决This view is read-only

摘要: 阅读全文

posted @ 2021-11-22 16:41 宏盛 阅读(2015) 评论(0) 推荐(1) 编辑

2020年12月12日

解决 in the drive '/cdrom/' and press问题

摘要: 解决安装 pip3时 错误: Media change: please insert the disc labeled 'Ubuntu 20.04.1 LTS _Focal Fossa_ - Release amd64 (20200731)' in the drive '/cdrom/' and p 阅读全文

posted @ 2020-12-12 10:13 宏盛 阅读(554) 评论(0) 推荐(0) 编辑

2020年12月5日

学习鸿蒙环境搭建,第一步先连上PUTTY和Xshell

摘要: 1、PUTTY无法连接 解决方法: (1)sudo apt-get install openssh-server (安装openssh服务) (2)sudo apt-get install openssh-client (安装client连接服务) (3)ps -e|gres ssh (4)sudo 阅读全文

posted @ 2020-12-05 09:54 宏盛 阅读(204) 评论(0) 推荐(0) 编辑

2018年4月12日

Python学习

摘要: 1.日期和时间 time模块 time() localtime([time]格式化函数 时间戳 2.文件与文件夹操作 3.JSON 文件 阅读全文

posted @ 2018-04-12 22:38 宏盛 阅读(174) 评论(0) 推荐(0) 编辑

2018年4月2日

Linq查询

摘要: from 变量 in 数组 where 条件 select 变量 以from开头 返回是一个IEnumerable<T>类型值 阅读全文

posted @ 2018-04-02 10:28 宏盛 阅读(94) 评论(0) 推荐(0) 编辑

2018年3月31日

返回多行分组日期最大值的行数据

摘要: 1.返回多行分组日期最大值的行数据SELECT *FROM ( SELECT *, ROW_NUMBER() OVER ( PARTITION BY 分组列名 ORDER BY 排序列明 DESC ) rn FROM 表名 ) tWHERE t.rn<=1 阅读全文

posted @ 2018-03-31 10:44 宏盛 阅读(307) 评论(0) 推荐(0) 编辑

2017年5月2日

递归加载Treeview

摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Data.SqlClient;using System.Drawing;using Sys 阅读全文

posted @ 2017-05-02 15:37 宏盛 阅读(213) 评论(0) 推荐(0) 编辑

2017年4月23日

c# 连接数据库SqlHelper

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Configuration;using System 阅读全文

posted @ 2017-04-23 08:42 宏盛 阅读(1593) 评论(0) 推荐(0) 编辑

2016年8月3日

博园第一篇触发器

摘要: 触发器:触发器是一个特殊的存储过程。常用的触发器有三种:insert,update,deletecreate trigger tr_nameon table/view{for|after |instead of}[update][,][insert][,][delete][with encrypti 阅读全文

posted @ 2016-08-03 10:34 宏盛 阅读(124) 评论(0) 推荐(0) 编辑