|
| |
精品推荐 |
 |
|
| |
|
|
|
|
数据库中与C#中的数据类型对照
|
日期:2007年7月8日 作者: 查看:[大字体
中字体 小字体]
|
/// <summary> /// 数据库中与C#中的数据类型对照 /// </summary> /// <param name="type"></param> /// <returns></returns> private string ChangeToCSharpType(string type) { string reval=string.Empty; switch(type.ToLower()) { case "int": reval= "Int32"; break; case "text": reval= "String"; break; case "bigint": reval= "Int64"; break; case "binary": reval= "System.Byte[]"; break; case "bit": reval= "Boolean"; break; case "char": reval= "String"; break; case "datetime": reval= "System.DateTime"; break; case "decimal": reval= "System.Decimal"; break; case "float": reval= "System.Double"; break; case "image": reval= "System.Byte[]"; break; case "money": reval= "System.Decimal"; break; case "nchar": reval= "String"; break; case "ntext": reval= "String"; break; case "numeric": reval= "System.Decimal"; break; case "nvarchar": reval= "String"; break; case "real":
上一篇:全面剖析VB.NET(2)
下一篇:Autodesk官方最新的.NET教程(四)(vb.net版)
|
| 相关文章: |
|
|
|
| 相关软件: |
|
| |
|