Scott,
Thanks for the information to get me up and running, I do have one problem left now
"SELECT TableA.Manufacturer_Name FROM TableA WHERE ManufacturerNumber =" +str(FileGlobals.HexValue)
When this is converted into SQL, it appears as:
"SELECT TableA.Manufacturer_Name FROM TableA WHERE ManufacturerNumber = 0x6A", and this is a problem,as the last piece of this code is a string.
My question is this how do you convert in the post expression the Hex Value to a Decimal Value, as the value stored in the database is decimal. I have tried changing the FileGlobals.HexValue to unsigned type, but this didn't make any difference to the conversion,as the number is input as Hex.
RESULT
I had to go into each post expression and change the data type for the
fileglobal for this to work. Isn't the data type shared across all the instances?