I get an error that is must be a number or string, not : '2022-10-11 11:59:.003'
I think last time, I had made a column in SQL using: format( )
So my transaction column was a string?
Now I have a legit timestamp that I am trying to append from a t_stamp in SQL into a python dataset append.
Re-examine your assumptions. You are placing a timestamp in a variable whose name includes "transaction". That's more than a bit odd, and suggests that you are making a mistake at that line. Or you have crappy variable names that are confusing you.
In any case, timestamps that are instances of java.util.Date are not numbers, and therefore don't work with int().