博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2016年10月27日

摘要: 1 static void Main(string[] args) 2 { 3 double totalAmount = 20; 4 int num = 10; 5 double minAmount = 0.01; 6 Random r = new Random(); ... 阅读全文
posted @ 2016-10-27 09:39 权 阅读(2309) 评论(0) 推荐(0)

2016年10月11日

摘要: 括号小写字母(Arial Unicode MS):⒜、⒝、⒞、⒟、⒠、⒡、⒢、⒣、⒤、⒥、⒦、⒧、⒨、⒩、⒪、⒫、⒬、⒭、⒮、⒯、⒰、⒱、⒲、⒳、⒴、⒵带圈大写字母(Arial Unicode MS):Ⓐ、Ⓑ、Ⓒ、Ⓓ、Ⓔ、Ⓕ、Ⓖ、Ⓗ、Ⓘ、Ⓙ、Ⓚ、Ⓛ、Ⓜ、Ⓝ、Ⓞ、Ⓟ、Ⓠ、Ⓡ、Ⓢ、Ⓣ、Ⓤ、Ⓥ、Ⓦ、Ⓧ、Ⓨ 阅读全文
posted @ 2016-10-11 13:20 权 阅读(3010) 评论(0) 推荐(0)

摘要: 使用SQL语句 检测 MSSQL死锁!!! 阅读全文
posted @ 2016-10-11 11:29 权 阅读(176) 评论(0) 推荐(0)

2016年9月27日

摘要: 需 引用命令空间System.Security.Cryptography 阅读全文
posted @ 2016-09-27 11:32 权 阅读(2047) 评论(0) 推荐(0)

2016年8月30日

摘要: 1、作用 删除指定长度的字符,并在指定的起点处插入另一组字符。 2、语法 STUFF ( character_expression , start , length ,character_expression ) 3、示例 以下示例在第一个字符串 abcdef 中删除从第 2 个位置(字符 b)开始 阅读全文
posted @ 2016-08-30 09:53 权 阅读(1542) 评论(0) 推荐(0)

2015年10月10日

摘要: 图片流下载string filePath = HttpContext.Current.Server.MapPath("/img/wxPic/"); if (!Directory.Exists(filePath)){ Directory.CreateDirectory(filePath);}strin... 阅读全文
posted @ 2015-10-10 17:03 权 阅读(2198) 评论(0) 推荐(0)

2015年5月11日

摘要: 数据库:SQL Server 2005,运行环境:Windows Server 2008在数据库里的所有作业都执行失败,包括自动执行和手动执行。在事件查看器里看到的错误报告如下:该作业失败。 无法确定所有者 AAA/Administrator (拥有作业 备份-AAA)是否有服务器访问权限 (原因:... 阅读全文
posted @ 2015-05-11 13:18 权 阅读(656) 评论(0) 推荐(0)

2015年2月9日

摘要: 直接在TortoiseSVN中修改过往日志,会提示:DAV request failed;it's possible that the repository's pre-revprop-change hook either failed or is non-existentAt least one ... 阅读全文
posted @ 2015-02-09 11:00 权 阅读(8874) 评论(0) 推荐(1)

2015年1月29日

摘要: DataTable Linq查询 1.查询DataRow 2.查询某个字段 3.group by Array Linq查询 阅读全文
posted @ 2015-01-29 22:16 权 阅读(515) 评论(0) 推荐(0)

2015年1月19日

摘要: 1 --获取全拼 2 DECLARE @str VARCHAR(max) 3 SET @str= [dbo].[fn_Getquanpin]('中山') 4 PRINT(@str) 5 create function [dbo].[fn_Getquanpin](@str varchar(... 阅读全文
posted @ 2015-01-19 15:48 权 阅读(643) 评论(0) 推荐(0)