摘要:
string connectionString = "server=192.168.0.11;database=test;uid=sa;pwd=sa"; using (SqlConnection connection = new SqlConnection(connectionString)) { using (SqlCommand cmd = new SqlCommand(SQLString, connection)) { try { connection.Open(); int rows = cmd.ExecuteNonQuery(); return rows; } c 阅读全文
posted @ 2013-02-23 10:26 HI END 阅读(139) 评论(0) 推荐(0) 编辑