Currently my application is 32-bit.
This means that all tables running on SQL Server 2008 IDs' are INT that is equal to System.Int32 and everywhere where I parse strings to integers, I use Int32.TryParse().
I called this Implicit int size indication.
If I will want to make my application to be 64-bit I think there will be 2 scenarios:
- Rename all
Int32toInt64andINTtoBIGINT.
or
- Rename all
Int32tointNOW and make int size indication beExplicit.
Which is better, how do you think?