❔ Dapper - Call stored procedure error
I finished to write my first POST Api, but I get an error when I execute it and it call a stored procedure.
-$exception {"OUT or INOUT argument 1 for routine mydb.storedprocedure is not a variable or NEW pseudo-variable in BEFORE trigger"} MySqlConnector.MySqlException
ErrorCode StoredProcedureNotVariableArgument MySqlConnector.MySqlErrorCode
I checked all parameters, count and names, and they are ok, what am I forgetting?2 Replies
update: I gained the access to the DB and I noticed that the procedure I'm calling have the first parameter as INOUT, then I setted my parameter to INOUT
but this was not enough to solve, it continue to say that the 1st parameter have some error 🤔
update: I noticed that I continuosly still get error because standing to the debugger, a dynamic parameter direction can be only input if I use it in a text command (I think it refers to the fact I use text to call the procedure with SQL)
don't understand this but I used a "workaround", I setted the idUser adding a SQL row in the command
Looks like nothing has happened here. I will mark this as stale and this post will be archived until there is new activity.