03 2013 档案
摘要://递归 public class LinC { public static string Go() { Func<Func<int, int>, Func<int, int>> fun = child => x => x == 0 ? 1 : x * child(x - 1); var F = Recursion<int>.GetRecursion(fun); string aa = F(5).ToString(); return aa; } ...
阅读全文
摘要:在“企业管理器”-“安全性”-“登录”里面对sa修改密码时,弹出错误提示:2812:未能找到存储过程‘sp_password’按照此错误信息应该就是系统缺少‘sp_password’这个存储过程,所以只要给系统添加这个存储过程就可以了,具解决方式如下:打开“查询分析器”,登录的时候选择“Windows验证”而非默认的“SQL Server身份验证”,在master下执行以下语句:SET QUOTED_IDENTIFIER ON GO SET ANSI_NULLS OFF GO create procedure sp_password @old sysname = NULL, ...
阅读全文

浙公网安备 33010602011771号