3 Replies Latest reply on Dec 18, 2013 7:57 AM by shawkins

    Mysql TEIID30068 The function   is an unknown form.  Check that the function name and number of arguments is correct.

    jchidiac

      Hi,

      I'm using Mysql Database and i have a function defined on my MySql DataBase

       

      i'm trying to use this function in my query via teiid

      i got the follwing error :

           Mysql TEIID30068 The function  "dbTest.printResult" is an unknown form.  Check that the function name and number of arguments is correct.

       

      the function script :

      DROP FUNCTION IF EXISTS dbTest.printResult;

      CREATE FUNCTION dbTest.`printResult`(value int) RETURNS int(11)

      BEGIN

            RETURN value;

         END;

       

      it's not possible to use the Db functions with Teiid ?