Executing stored procedure in MS SQL
Hello, I've used Kysely for PG DB and love it, now I have a MSS SQL project and need to execute some Stored Procedures, how would one do this?
Solution:Jump to solution
Hey 👋
Kysely has nothing for Stored Procedure execution. Wrap each execution with a type-safe function. Use
sql
under the hood.
If these things can be introspected, there is potential in generating these type-safe functions....1 Reply
Solution
Hey 👋
Kysely has nothing for Stored Procedure execution. Wrap each execution with a type-safe function. Use
sql
under the hood.
If these things can be introspected, there is potential in generating these type-safe functions.