摘要: Action<Transaction, string> action = (t, str) => { SqlConnection con = new SqlConnection("server=.;uid=sa;pwd=chen;database=pubs"); con.Open(); if(null != con) con.EnlistTransaction(t); string strSql = "insert into test values('" + str + "','zzz', 阅读全文
posted @ 2011-06-14 14:48 天空海阔 阅读(187) 评论(0) 推荐(0) 编辑