We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I was trying to used purepyodbc to connect to IBM db2 on AIX, in particular the HCL Commerce database. It almost immediately tripped over the types.
https://docs.oracle.com/en/java/javase/21/docs/api/constant-values.html#java.sql (search for java.sql.Types) has way more than found in
purepyodbc/purepyodbc/_enums.py
Line 12 in 06c11e1
Here's the list of types that from the java class
In my case I needed to add BIGINT, DOUBLE, and DECIMAL. For DECIMAL I used decimal.Decimal as the conversion.
The text was updated successfully, but these errors were encountered:
Absolutely! 😄
I hope to get looking at this project more this year. In the meantime, contributions are welcome. 😉
Sorry, something went wrong.
No branches or pull requests
I was trying to used purepyodbc to connect to IBM db2 on AIX, in particular the HCL Commerce database. It almost immediately tripped over the types.
https://docs.oracle.com/en/java/javase/21/docs/api/constant-values.html#java.sql (search for java.sql.Types) has way more than found in
purepyodbc/purepyodbc/_enums.py
Line 12 in 06c11e1
Here's the list of types that from the java class
In my case I needed to add BIGINT, DOUBLE, and DECIMAL. For DECIMAL I used decimal.Decimal as the conversion.
The text was updated successfully, but these errors were encountered: