会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Lukas
首页
新随笔
订阅
管理
上一页
1
2
3
下一页
2013年11月15日
排序算法
摘要: /// /// 冒泡排序 /// /// public static void BuildderScort(int[] arr) { for (int i = 0; i arr[j + 1]) { int temp = arr[j]; arr[j] = arr[j + 1]; arr[j + 1] = temp; ...
阅读全文
posted @ 2013-11-15 13:47 Lukas89
阅读(212)
评论(0)
推荐(0)
2013年11月14日
搜索功能
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Web;using Lucene.Net.Index;using Lucene.Net.Documents;using Lucene.Net.Search;using Lucene.Net.Analysis;using Lucene.Net.Store;using System.Web.UI.WebControls;using Lucene.Net.QueryParsers;using Lucene.Net.Analysis.Standard
阅读全文
posted @ 2013-11-14 18:02 Lukas89
阅读(144)
评论(0)
推荐(0)
2013年11月12日
错误页配置
摘要: 在web.config文件中的system.web配置: 例:
阅读全文
posted @ 2013-11-12 22:26 Lukas89
阅读(75)
评论(0)
推荐(0)
给数据库中表字段添加说明
摘要: EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'说明信息' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'表名称', @level2type=N'COLUMN',@level2name=N'列名'
阅读全文
posted @ 2013-11-12 22:23 Lukas89
阅读(355)
评论(0)
推荐(0)
还原数据库和备份数据库
摘要: 还原数据库restore database XK_Enterprise_DB from disk = 'E:/DataBase/2013-09-03XK_Enterprise_DB.bak' WITH REPLACE 备份数据库backup database XK_Enterprise_DBto disk='E:/DataBase/2013-09-03XK_Enterprise_DB.bak'
阅读全文
posted @ 2013-11-12 22:17 Lukas89
阅读(144)
评论(0)
推荐(0)
上一页
1
2
3
下一页
公告