Using CIM, PHP SDK, MySQL
Documentation states:
customerPaymentProfileId
Format: Numeric
Numeric can mean many different things. How should this value be stored? Unless we have more details on what exactly this value can contain, it seems the only safe way to store it is as a string.
Solved! Go to Solution.
12-27-2012 10:03 AM
it a whole number, it 8 digit for now, but could grow to 9 digit then 10, etc
12-27-2012 12:23 PM
it a whole number, it 8 digit for now, but could grow to 9 digit then 10, etc
12-27-2012 12:23 PM
Thank you for the clarification. Our original developer set the mysql data type as decimal(10,1), and I was trying to figure out if he knew something I didn't know. As long as the value will always be a whole, positive number, it seems the best approach would be int(11) unsigned
01-18-2013 02:43 PM