成人午夜激情影院,小视频免费在线观看,国产精品夜夜嗨,欧美日韩精品一区二区在线播放

SQL Server與C#中數據類型的對應關系

2010-08-28 10:52:28來源:西部e網作者:

  /// <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":
     reval= "System.Single";
     break;
    case "smalldatetime":
     reval= "System.DateTime";
     break;
    case "smallint":
     reval= "Int16";
     break;
    case "smallmoney":
     reval= "System.Decimal";
     break;
    case "timestamp":
     reval= "System.DateTime";
     break;
    case "tinyint":
     reval= "System.Byte";
     break;
    case "uniqueidentifier":
     reval= "System.Guid";
     break;
    case "varbinary":
     reval= "System.Byte[]";
     break;
    case "varchar":
     reval= "String";
     break;
    case "Variant":
     reval="Object";
     break;
    default:
     reval= "String";
     break;
   }
   return reval;
  }
關鍵詞:SQLServer
主站蜘蛛池模板: 唐海县| 呼和浩特市| 凤凰县| 徐州市| 霍林郭勒市| 石棉县| 河津市| 太仓市| 阆中市| 鄂尔多斯市| 遂昌县| 新源县| 且末县| 上饶县| 云浮市| 朔州市| 什邡市| 华阴市| 长子县| 湄潭县| 芒康县| 郸城县| 东丰县| 新竹市| 泊头市| 连州市| 神池县| 九龙城区| 加查县| 旅游| 全南县| 延吉市| 梅河口市| 凤翔县| 石城县| 长顺县| 鄂温| 桑日县| 无极县| 鄂托克前旗| 四川省|