Re-enable Int64 override for IDataReader.Get
This commit is contained in:
parent
fe91cb0d41
commit
3fe192cbfa
1 changed files with 2 additions and 2 deletions
|
|
@ -188,10 +188,10 @@ namespace TShockAPI.DB
|
||||||
typeof (Int32?),
|
typeof (Int32?),
|
||||||
(s, i) => s.IsDBNull(i) ? null : (object)s.GetInt32(i)
|
(s, i) => s.IsDBNull(i) ? null : (object)s.GetInt32(i)
|
||||||
},
|
},
|
||||||
/*{
|
{
|
||||||
typeof (Int64),
|
typeof (Int64),
|
||||||
(s, i) => s.GetInt64(i)
|
(s, i) => s.GetInt64(i)
|
||||||
},*/
|
},
|
||||||
{
|
{
|
||||||
typeof (Int64?),
|
typeof (Int64?),
|
||||||
(s, i) => s.IsDBNull(i) ? null : (object)s.GetInt64(i)
|
(s, i) => s.IsDBNull(i) ? null : (object)s.GetInt64(i)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue