Stored procedure returns Expected to read 4 header bytes but only received 0

You are viewing an old version of this question. View the current version here.

I have the following Stored Procedure:

CREATE DEFINER=`user11`@`%` PROCEDURE `UpdateDimDateEntity`(IN DimDateKey INT, IN FullDate DATE, IN DayName NVARCHAR(50), IN DayOfWeek SMALLINT) BEGIN UPDATE DimDate SET FullDate = FullDate, DayName = DayName, DayOfWeek = DayOfWeek WHERE DimDate.DimDateKey = DimDateKey; END

And Im calling it from my .NET 7 app. I receive an error "Expected to read 4 header bytes but only received 0"

Does anyone know why?

Comments

Comments loading...
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.