TWAC

Results 5 issues of TWAC

Tested on Ubuntu 16.04. ```sh #!/bin/sh git clone https://github.com/ssokolow/fastdupes cd fastdupes mkdir files seq 100000 > files/file1; echo "1" >> files/file1 seq 100000 > files/file2; echo "2" >> files/file2 cmp...

bug

Fix #31, also one additional Python 3 fix.

Feature request, SQL_VARBINARY / SQL_LONGVARBINARY does not seem to work today. Tried this with postgresql and python 3.5 ```sql CREATE TABLE mybtest ( fooid integer, foobin bytea ); insert into...

feature

I am using this snippet for testing on Windows with the "SQL Server" driver. ```python now = datetime.datetime.now().replace(microsecond=0) curs.execute("select ?", [now]) ``` The default value for [timestamp digits](https://github.com/blue-yonder/turbodbc/blob/1.0.4/cpp/turbodbc/Library/src/descriptions/timestamp_description.cpp#L36) of 6...

compatibility

There are a few commits regarding Python 3 compatibility, but I could not even get basic.py to work. I made a few changes so that queries work for me. The...