gpt4 book ai didi

c# - 在 ASP.NET 项目中将数据类型从 Oracle 转换为 SQL Server

转载 作者:太空宇宙 更新时间:2023-11-03 15:05:53 25 4
gpt4 key购买 nike

我正在处理一个 ASP.NET 项目的数据库迁移(从 Oracle 到 SQL Server),如果要修改连接帮助程序类,这也是这项工作的一部分。

此类特别包含一段代码,用于执行 C# 变量类型与 OracleDbType 枚举成员之间的匹配。因此,我必须将这种匹配转换为 C# 变量类型与 SqlDbType 枚举成员之间的匹配。

我使用的第一种方法是使用以下步骤将 OracleDbType 的成员转换为 SqlDbType 的成员:

-使用 Oracle's official documentation 中的此表查找与 OracleDbType 成员匹配的 Oracle SQL 类型

-使用microsoft's official documentation中的这个表找到对应的Sql Server数据类型

-在microsoft's official documenation中使用这个表找到对应的SqlDbType枚举成员

但是这种方法给我带来了一些问题。例如,在我的原始代码中,“short”变量(翻译成 OracleDbType.Int16)和“int”变量(翻译成 OracleDbType.Int32)是有区别的。使用我上面描述的方法,我必须将 OracleDbType.Int16 和 OracleDbType.Int32 转换为 SqlDbType.Decimal,这很奇怪而且看起来不正确。

所以我选择只使用 this table并关注“.NET Framework 类型”和“SqlDbType 枚举”列进行转换,这导致将 OracleDbType.Int16 转换为 SqlDbType.SmallInt,将 OracleDbType.Int32 转换为 SqlDbType.BigInt。

我想知道我的方法中哪一个是正确的,为什么。

最佳答案

这是一个老问题,但也许我可以帮助您阐明这一点。您在问题中的错误假设之一是 OracleDbType.Int32 是 SQLServer 中的 BigInt。 is 实际上是一个 SqlDbType.Int。 OracleDbType.Int64 是一个 SqlDbType.BigInt。因此,如果我必须创建一个 Oracle 到 Framework 到 SqlServer 类型的比较表,我会这样说。

Oracle          .Net Type       SqlServerType
BFile byte[] varbinary(max) With FileStream
Blob byte[] varbinary
Byte byte tinyint
Char Char/String char
Clob String varchar(max)
Date DateTime Date
Decimal decimal decimal/numeric
Double double float
Int16 Int16 smallint
Int32 int int
Int64 long/Int64 bigint
Long String (n)varchar(max)
LongRaw byte[] varbinary(max)
NChar String nchar
NClob String nvarchar
NVarchar2 String nvarchar
Raw byte[] varbinary
Single single real
TimeStamp DateTime datetime2
TimeStampLTZ DateTime datetimeoffset (i think)
TimeStampTZ DateTime datetimeoffset
Varchar2 String varchar
XmlType String XML

另请参阅 this也提供 CLR 类型的链接。

在我看来,我会为您的转换创建一个字典,将 OracleDbType 链接到 SqlDbType 等。我有一个在 SqlDbTypes 和 .Net 类型之间使用的类似字典。

public static Dictionary<Type, SqlDbType> typeMap = 
new Dictionary<Type, SqlDbType>()
{
{ typeof(byte), SqlDbType.TinyInt}, { typeof(sbyte), SqlDbType.TinyInt },
{ typeof(short), SqlDbType.SmallInt}, { typeof(ushort), SqlDbType.SmallInt },
{ typeof(int), SqlDbType.Int }, {typeof(uint), SqlDbType.Int },
{ typeof(long), SqlDbType.BigInt }, {typeof(ulong), SqlDbType.BigInt },
{ typeof(float), SqlDbType.Float }, { typeof(double), SqlDbType.Float },
{ typeof(decimal), SqlDbType.Decimal }, {typeof(bool), SqlDbType.Bit },
{ typeof(string), SqlDbType.VarChar }, {typeof(char), SqlDbType.Char },
{ typeof(Guid), SqlDbType.UniqueIdentifier }, { typeof(DateTime), SqlDbType.DateTime},
{ typeof(DateTimeOffset), SqlDbType.DateTimeOffset }, { typeof(byte[]), SqlDbType.VarBinary },
//Nullable fields
{ typeof(byte?), SqlDbType.TinyInt }, { typeof(sbyte?), SqlDbType.TinyInt },
{ typeof(short?), SqlDbType.SmallInt}, { typeof(ushort?), SqlDbType.SmallInt },
{ typeof(int?), SqlDbType.Int }, { typeof(uint?), SqlDbType.Int },
{ typeof(long?), SqlDbType.BigInt }, { typeof(ulong?), SqlDbType.BigInt },
{ typeof(float?), SqlDbType.Float }, { typeof(double?), SqlDbType.Float },
{ typeof(decimal?), SqlDbType.Decimal}, { typeof(bool?), SqlDbType.Bit },
{ typeof(Guid?), SqlDbType.UniqueIdentifier}, { typeof(DateTime?), SqlDbType.DateTime },
{ typeof(DateTimeOffset?), SqlDbType.DateTimeOffset }
};

希望这对您有所帮助。

关于c# - 在 ASP.NET 项目中将数据类型从 Oracle 转换为 SQL Server,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43629014/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com