摘要: 1.opencv版本:opencv-3.4.2-vc14_vc15.exe2.设置环境变量path: E:\opencv\opencv\build\x64\vc14\bin3.用VS2015新建一个win32控制台文件,点击属性管理器.4.选择debug X64下的这个选项5.选择包含目录,对他进行 阅读全文
posted @ 2018-08-02 14:36 Logan_626 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 1.解压目录。 2.安装 3.重新设置密码 set password=password('123456'); FLUSH PRIVILEGES; 阅读全文
posted @ 2018-05-22 22:44 Logan_626 阅读(279) 评论(0) 推荐(0) 编辑
摘要: declare @temp varchar(50)DECLARE My_Cursor CURSOR --定义游标FOR (SELECT t.PACK_CODE FROM T_MDM_PRO_PRODUCT_STRUCT t group by t.PACK_CODE) --查出需要的集合放到游标中OP 阅读全文
posted @ 2017-08-07 17:31 Logan_626 阅读(133) 评论(0) 推荐(0) 编辑
摘要: SELECT CASE WHEN GROUPING(F1) = 1 THEN '总计' WHEN GROUPING(F1) = 0 AND GROUPING(F2) = 1 THEN F1+'合计' WHEN GROUPING(F1) = 0 AND GROUPING(F2) = 0 AND GRO 阅读全文
posted @ 2017-04-18 16:46 Logan_626 阅读(2479) 评论(0) 推荐(0) 编辑
摘要: 1.在命令行下输入下面的命令来安装 Gnome 包 sudo yum groupinstall "GNOME Desktop" "Graphical Administration Tools" 阅读全文
posted @ 2017-03-07 13:42 Logan_626 阅读(150) 评论(0) 推荐(0) 编辑
摘要: text-align: justify; text-justify:inter-ideograph; 阅读全文
posted @ 2017-02-11 16:28 Logan_626 阅读(1821) 评论(0) 推荐(0) 编辑
摘要: <plugin> <groupId>net.alchim31.maven</groupId> <artifactId>yuicompressor-maven-plugin</artifactId> <version>1.5.1</version> <executions> <execution> < 阅读全文
posted @ 2017-01-06 16:48 Logan_626 阅读(359) 评论(0) 推荐(0) 编辑
摘要: // 图片文件中转接口 @RequestMapping(value = "/images/{guid}", method = { RequestMethod.GET }) public void getIcon(@PathVariable("guid") String guid, HttpServl 阅读全文
posted @ 2016-10-28 10:18 Logan_626 阅读(505) 评论(0) 推荐(0) 编辑
摘要: 分页存储过程 CREATE PROCEDURE [dbo].[Proc_Page] @PageIndex int = 1, -- 当前页码 @PageSize int = 10, -- 每页记录条数(页面大小) @Table nvarchar(2000), -- 表名或视图名,甚至可以是嵌套SQL: 阅读全文
posted @ 2016-09-29 12:43 Logan_626 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 1.自定义固定协议头部。格式:([head][body][filestream]) /// <summary> /// 数据包头部 /// </summary> [StructLayout(LayoutKind.Sequential, Pack = 1)] public struct ZsyData 阅读全文
posted @ 2016-08-01 10:23 Logan_626 阅读(275) 评论(0) 推荐(0) 编辑