diff --git a/src/Coldairarrow.Util/DataAccess/OracleHelper.cs b/src/Coldairarrow.Util/DataAccess/OracleHelper.cs index 1334847..4adb522 100644 --- a/src/Coldairarrow.Util/DataAccess/OracleHelper.cs +++ b/src/Coldairarrow.Util/DataAccess/OracleHelper.cs @@ -27,28 +27,28 @@ public OracleHelper(string nameOrConStr) protected override Dictionary DbTypeDic { get; } = new Dictionary() { - { "BFILE", typeof(byte[]) }, - { "BLOB", typeof(byte[]) }, - { "CHAR", typeof(string) }, - { "CLOB", typeof(string) }, - { "DATE", typeof(DateTime) }, - { "FLOAT", typeof(decimal) }, - { "INTEGER", typeof(decimal) }, - { "INTERVAL YEAR TO MONTH", typeof(Int32) }, - { "INTERVAL DAY TO SECOND", typeof(TimeSpan) }, - { "LONG", typeof(string) }, - { "LONG RAW", typeof(string[]) }, - { "NCHAR", typeof(string) }, - { "NCLOB", typeof(string) }, - { "NUMBER", typeof(decimal) }, - { "NVARCHAR2", typeof(string) }, - { "RAW", typeof(byte[]) }, - { "ROWID", typeof(string) }, - { "TIMESTAMP", typeof(DateTime) }, - { "TIMESTAMP WITH LOCAL TIME ZONE", typeof(DateTime) }, - { "TIMESTAMP WITH TIME ZONE", typeof(DateTime) }, - { "UNSIGNED INTEGER", typeof(decimal) }, - { "VARCHAR2", typeof(string) } + { "bfile", typeof(byte[]) }, + { "blob", typeof(byte[]) }, + { "char", typeof(string) }, + { "clob", typeof(string) }, + { "date", typeof(DateTime) }, + { "float", typeof(decimal) }, + { "integer", typeof(decimal) }, + { "interval year to month", typeof(int) }, + { "interval day to second", typeof(TimeSpan) }, + { "long", typeof(string) }, + { "long raw", typeof(string[]) }, + { "nchar", typeof(string) }, + { "nclob", typeof(string) }, + { "number", typeof(decimal) }, + { "nvarchar2", typeof(string) }, + { "raw", typeof(byte[]) }, + { "rowid", typeof(string) }, + { "timestamp", typeof(DateTime) }, + { "timestamp with local time zone", typeof(DateTime) }, + { "timestamp with time zone", typeof(DateTime) }, + { "unsigned integer", typeof(decimal) }, + { "varchar2", typeof(string) } }; #endregion