I connect to a MySQL database with Base and there I have some stored procedures. How I may call them from Base and get the results?
Example:
CREATE PROCEDURE GetAllProducts()
BEGIN
SELECT * FROM products;
END
Is it possible to call the "GetAllProducts() stored procedure from BASE within a BASE QUERY?
e.g. SELECT * FROM GetAllProducts();