Giacomo Lacava

Results 42 comments of Giacomo Lacava

+1, it would probably make it easier to reuse utility classes with unreleased APIs (e.g. Projects).

+1. This lib looks abandoned, tbh.

I don't know whether to be happy that I've found this, after two hours banging my head against the screen, or to be upset that almost a year later such...

I think it should be mentioned that it’s a _compulsory_ parameter when using Python3, rather than something advanced and optional that may or may not be required. I would dare...

+1 for merging this asap. Could be the impetus for a new release...? Been a while. This utility is very useful.

It looks like @jiangwen365 has given up. There are a bunch of forks, the one that looks better seems to be from @braian87b

@braian87b what's the best way to reach you? shall we keep using this tracker and just CC you? I have an issue that looks like a bug (with sql2012, every...

Ended up replacing it with pyodbc (literally just changed the import statement, and everything worked). Another victory for C libraries :(

@braian87b ``` conn = odbc.connect('Driver={{{driver}}}; Server={instancestring}; Address={host},{port}; Database={dbname}; Uid={user}; Pwd={pwd};'.format(driver='SQL Server', ... ) # etc etc with conn.cursor() as cursor: with open(file_path, 'w', encoding='utf-8') as outfile: sql = "SELECT *...