Problem executing stored procdedure in SQL server from python
your text`I’m trying to execute a stored procedure in SQL server from python using pyobdc. apparently it is working correctly but there is nothing being executed in my database. When I execute that procedure directly in SQL server everything workd correctly. here is my code hope you can help me.
connectors = [
SQLServerConnector(
driver=”{SQL Server Native Client 11.0}”,
server=r”MARIOSQLMARIO”,
database=”SlicTe”
)
]