mysql - The selected Stored Procedure returns No Columns using My SQL -


i getting error 'the selected stored procedure returns no columns' in entity framework.

i have created following procedure in mysql:

create procedure `getcustomersbyname`(     p_name varchar(50) ) begin  select id,name,categoryid customers  ;  end 

now using add import function import procedure. getting error. please provide me solution of problem.


Comments

Popular posts from this blog

c - Bitwise operation with (signed) enum value -

xslt - Unnest parent nodes by child node -

YouTubePlayerFragment cannot be cast to android.support.v4.app.Fragment -