I'm fetching data from a db with the use of jaydebeapi
pkg. I want to serialize the data (it's in list of tuples format) using pickle
.
The data may contain different java class types. For a certain data type (<java class 'java.lang.Integer'>
) I get the following error message:
PicklingError: Can't pickle <java class 'java.lang.Integer'>: it's not found as java.lang.java.lang.Integer
Is there any way to fix this? Or is there any known workaround?
Thanks a lot!
You should use the JPype Pickle Module instead of pickle.
From the docs: