braian87b
braian87b
Hi, You mean connection string generation?... that is not the main purpose of the lib, but could be added as code snippets in documentation help or even as separate module....
Done, removed from readme.md... thanks!
We should see and debug the `def fetchone(self):` maybe is ``` elif alloc_buffer.value == '': value_list.append(None) ```
yes, if you edit it to: ``` elif alloc_buffer.value == '': value_list.append('') ``` will output: `Row(nul_col=None, empty_col='')` (I had NamedTupleRow for sqlalchemy pyodbc compatibility so it is:) `(None, '')` in...
@aatwork have you tried it ?
I've been using the code in a lot of projects, any help you need just let me know. I had plans to continue with the code-mixings from the others forks...
@toyg, sorry, I was on vacation... that error seems to be related to ODBC, can you share the code snippet that fails?
Mh,... snippets seems to be fine... which python version are you using? python 2/3 ? pypyodbc doesn't appear to work well with python 3...