I am getting the following error when calling on my stored procedure ``` Error 1312: PROCEDURE mydb.GetAllNotes can't return a result set in the given context ``` I am calling on my stored procedure with this code ``` go db.Query("CALL MyStoredProcedure()") ```