Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找System.Data.OracleClient OracleType.LongVarChar等效的数据类型 ODP.NET Oracle.DataAccess.Client OracleDbType
System.Data.OracleClient OracleType.LongVarChar
ODP.NET Oracle.DataAccess.Client OracleDbType
例子 :-
OracleType.Timestamp相当于 OracleDbType.TimeStamp。
OracleType.Timestamp
OracleDbType.TimeStamp
我该怎么做呢?
从MSDN 文档:
LongVarChar - 一种 Oracle LONG 数据类型,包含最大大小为 2 GB 的可变长度字符串。在 Value 中使用 .NET Framework String 或 OracleClient OracleString 数据类型。
根据ODP 文档中的可用类型,OracleDbType.Long似乎是匹配的。