I have a database that, along with the data tables, contains a couple of stored functions. Access to these functions with VB6 was part of the cmd string - eg in the following, the stored function is sfArticle:
Running this is B4J yields this error in the log:
Is there a way to access my stored functions?
B4X:
cmdSelectPerformers = "SELECT DISTINCT Performers,sfArticle(Performers) AS FPerformers FROM primarygroups ORDER BY FPerformers;"
Running this is B4J yields this error in the log:
B4X:
java.sql.SQLSyntaxErrorException: (conn=511) FUNCTION sfArticle does not exist
Is there a way to access my stored functions?