Oracle Number / Int64

Eric^2

Member²
What is the correct method for storing Int64's in an Oracle database? The standard Integer isn't overloaded to support Int64's. Should I use Variants? Doubles?
 
You can either use Doubles (which still have a limited precision) or strings. The property TOracleSession.Preferences.FloatPrecision affects the default handling of number fields with high precision.

------------------
Marco Kalter
Allround Automations
 
Back
Top