摘要: SQLSERVER与C#中数据类型的对应关系 /// ///数据库中与C#中的数据类型对照 /// /// /// privatestringChangeToCSharpType(stringtype) { stringreval=string.Empty; switch(type.ToLower()) { case"int": reval="Int32"; break; case"text": reval="String"; break; case"bigint": reval="I 阅读全文
posted @ 2013-08-09 16:00 zzlp 阅读(408) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.IO;namespace ConsoleApplication1{ public class INFO { public Int32 a { get; set; } public string b { get; set; } public string c { get; set; } ... 阅读全文
posted @ 2013-08-09 10:36 zzlp 阅读(394) 评论(0) 推荐(0) 编辑