Can T-SQL store ulong's?
Posted
by Onion-Knight
on Stack Overflow
See other posts from Stack Overflow
or by Onion-Knight
Published on 2010-06-02T14:38:39Z
Indexed on
2010/06/02
14:43 UTC
Read the original article
Hit count: 284
Title pretty much says it.
I want to store a C#.NET ulong
into a T-SQL database. I don't see any provisions for doing this, as the SQL bigint
has the same Min/Max values as a normal long
.
Is there any way I can do this? Or is catching an OverflowException
my only hope?
© Stack Overflow or respective owner