MSSQL; Woulkd it be possible to execute stored procedures? #527
Replies: 3 comments 3 replies
-
Do you get an error when trying to execute custom procedures today? |
Beta Was this translation helpful? Give feedback.
-
With this sql file:
I get this error: The SQLPage parser couldn't understand the SQL file. Parsing failed. Please check for syntax errors: Backtrace Error in query number 1: The SQLPage parser couldn't understand the SQL file. Parsing failed. Please check for syntax errors: Backtrace |
Beta Was this translation helpful? Give feedback.
-
Great! Thanks for your work
Op wo 27 nov 2024 23:39 schreef Ophir LOJKINE ***@***.***>:
… Did you try with the latest sqlpage version ?
The mssql stored procedure syntax parsing code was updated, see #655
<#655>
—
Reply to this email directly, view it on GitHub
<#527 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AHS2S7FSKHU3GLLGEUMALWD2CZC3DAVCNFSM6AAAAABMK2BOPCVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTCMZZHE4DKMI>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
When using stored procedures, we might be able to mimic the PostgresSQL output and thus achieve more with MSSQL while the SQLPage framework would not (yet) support certain functionalities.
like so:
CREATE PROCEDURE Delete_todo
@IDToDelete INT
AS
BEGIN
SET NOCOUNT ON;
END
Beta Was this translation helpful? Give feedback.
All reactions