kennethreitz / records

SQL for Humans™
https://pypi.python.org/pypi/records/
ISC License
7.15k stars 570 forks source link

Unable to execute procedure that do not have anything in return #156

Closed LaserPhaser closed 6 years ago

LaserPhaser commented 6 years ago

In MSSQL we may have procedures that do not return anything. for example with pyodbc we can commit execution.

cnxn = pyodbc.connect('connection string')
cursor = cnxn.cursor()
cursor.execute('Procedure that does not return anythin')
cursor.commit()

With records, we do not have such ability.