Michael König
Michael König
Weich database are you using? Have you tried the `varchar_max_character_limit` and `limit_varchar_results_to_max` options? These may affect `TEXT` field behavior.
@ericksc Any news on trying the options I mentioned?
Hi there! With turbodbc and MSSQL, you may want to set the [prefer_unicode](https://turbodbc.readthedocs.io/en/latest/pages/advanced_usage.html#prefer-unicode) option. This should generate UCS-2 encoded Python strings. If you want to write these to a file,...
Could you provide the code you are using, please? The one with turbodbc in it?
Hm, looks reasonable enough to me. Have you verified the dataframe itself contains the correct data? Have you checked what happens if you leave out the `encoding` parameter? Are there...
Hi Trenton! Thanks for your kind words and the issue report. There is no inherent difference between `fetchall()` and `fetchone()`. In fact, `fetchall()` repeatedly calls `fetchone()` internally. Also, I cannot...
Hi again :-). First of all, it seems like you are using a current version of turbodbc (`autocommit` tells me that). Please make sure to use the matching style of...
I think I start to get what you would like to do :-). So when an error occurs, you want to store some meaningful part of the exception in the...
Sorry, no experience with AWS Lambda here, but the error message indicates that the system you have compiled turbodbc on and the Linux image Amazon uses to provide lambda support...
Relates to #89