Re: [sqlalchemy] Is it possible to call a stored procedure that takes a table-valued parameter with SQLAlchemy?

2018-05-02 Thread Mike Bayer
On Wed, May 2, 2018 at 4:12 PM, Cameron Hassler wrote: > I'm trying to execute a stored procedure on MSSQL Server that takes a > single, table-valued parameter. The parameter itself is of a custom type > "StringTable" defined like so: > > CREATE TYPE [dbo].[StringTable] AS TABLE([strValue] [nvarch

[sqlalchemy] Is it possible to call a stored procedure that takes a table-valued parameter with SQLAlchemy?

2018-05-02 Thread Cameron Hassler
I'm trying to execute a stored procedure on MSSQL Server that takes a single, table-valued parameter. The parameter itself is of a custom type "StringTable" defined like so: CREATE TYPE [dbo].[StringTable] AS TABLE([strValue] [nvarchar](max) NULL) Is it possible to execute this procedure using