会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
红色石头
热情的血液+石头的冰冷
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
2006年8月21日
事务处理
摘要: sqlhelper.cs增加事务处理代码 #region 事务创建处理 public static SqlTransaction BeginTransaction(string con) { SqlConnection connection = new SqlConnection(con); connection.Open(); SqlTransaction tran = co...
阅读全文
posted @ 2006-08-21 17:28 红色石头
阅读(661)
评论(3)
推荐(0)
编辑
2006年8月12日
ref和out
摘要: ref和out的异同
阅读全文
posted @ 2006-08-12 00:54 红色石头
阅读(208)
评论(3)
推荐(0)
编辑
2006年7月31日
Composite模式C#实现
摘要: 实现用户及用户组权限设置,一个组内的用户权限相同。
阅读全文
posted @ 2006-07-31 23:22 红色石头
阅读(546)
评论(2)
推荐(0)
编辑
2006年7月13日
对多表联合查询的SQl语句的改进,大幅提高查询性能
摘要: 常用的多表联合查询的sql语句:select table1.ID from table1 inner join table2 on table1.ID=table2.ID where table2.col2='xxx'改进后:select a.ID from table1 a,(select col1,ID from table2 where col2='xxx') b where a.ID=b...
阅读全文
posted @ 2006-07-13 14:56 红色石头
阅读(5869)
评论(5)
推荐(0)
编辑
2006年7月6日
搬家了
摘要: 找来找去, 终于发现了一个好地方,决定以后就在这里落户了。
阅读全文
posted @ 2006-07-06 21:24 红色石头
阅读(196)
评论(3)
推荐(0)
编辑
上一页
1
2
3