05 2015 档案
摘要:(1).第一类:create view v as select * from table;(2).第二类:create view v as select id,name,age from table;(3).第三类:create view v[vid,vname,vage] as select id...
阅读全文
摘要:今天一个家伙说创建个数据库,搞了半天没弄好,习惯了图形界面,这些东西都忘了 全还给了老师。。。。。。
阅读全文
摘要:1 #include 2 3 //{3,5,8,7,6} 4 /* 5 int max(int *nums,int len) 6 { 7 int i; 8 int max=nums[0];//假定第0个元素为最大值 9 for(i=1;imax) 13 { 14 max = value;//如果找到比max还...
阅读全文
摘要:这几天搞了个简单的三层,数据库操作的帮助类实现using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Configuration;using System.Data;...
阅读全文
摘要:.Net开发的部分知名网站案例:http://www.godaddy.com 全球最大域名注册商http://www.ips.com 环迅支付,国内最早的在线支付平台http://www.icbc.com.cn中国工商银行http://www.vancl.com 凡客诚品http://www.m18...
阅读全文
摘要:今天无意在网上看到一些招聘试题,就看了看,发现好多东西都忘了,就把代码又打了一遍1.拉姆达表达式(Lambda Expressions)(MSDN链接:https://msdn.microsoft.com/zh-cn/library/bb549151.aspx)无参数的拉姆达表达式+Func委托给...
阅读全文