' Now get a Location_ID
'
Set RS = DB.Execute (AF.SQL("GenerateLocationID"))
Location_ID = CInt (RS(0).Value)
RS.Close
This is being written to an Oracle database defined with Number(10), but is returning the following error:
Microsoft VBScript runtime error '800a0006'
Overflow: 'CInt'
I'm suspicious, because the largest value in the Oracle table now is 32767. Is it a limit in the code that is creating the ID?
(The AF.SQL("GenerateLocationID") is 'Select Location_ID.NextVal from Dual', so it's just a standard Oracle select statement.