i have a simple procedure :
Create Procedure test(writerName VarCHar(100))
BEGIN
select * from writers where w_name = writerName;
END
but when i use : call test('Allen');
i get this error :
illegal mix of collations (utf8_persian_ci,IMPLICIT) And (utf8_general_ci,IMPLICIT) for operation = .
the writers table have : utf8_persian_ci collation and utf8 Chracter Set !