含泪编写的SqlHelper.cs
摘要:之前了一个SqlHelper.cs怪我没仔细看,漏洞太多了,我这就连夜又写了一个。。。。。代码同样没经过测试,因为我写的代码不需要测试,我相信我的代码。。。。一定跑不通 1 using System; 2 using System.Collections.Generic; 3 using System.Text; 4 using System.Collections; 5 using System.Data; 6 using System.Data.SqlClient; 7 using System.Configuration; 8 9 namespace Model 10...
阅读全文
我的第一个SqlHelper.cs
摘要:这个也借鉴了几个版本的一些代码。我没有写对存储过程的操作,因为我写不好存储过程。。。。。这个写完之后,我连测试都没测过。就当做给大家的反面教材吧!using System;using System.Collections.Generic;using System.Text;using System.Collections;using System.Data;using System.Data.SqlClient;using System.Configuration;namespace Model{ class SqlHelper { #region 通用方法 ...
阅读全文
哇咔咔,我有博客啦!
摘要:为了庆祝我的博客园开通成功,同时也为了祝贺我走向高端行列,我在此宣布在每年的今天以及之后六天为国际法定休假日,当然,仅限于看见这篇文章的人。。。。。同时,被扣工资,也与该文章无关1 class Program2 {3 static void Main(string[] args)4 {5 string str = "Happy!!!";6 Console.WriteLine(str);7 }8 }
阅读全文