Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 TimesTen 数据库的查询中调用 PLSQL 函数。当我打电话时,它给出了这样的错误
2818:未知函数 GET_COSTPRICE。如果这是一个 PLSQL 函数,请注意 SQL 语句中尚不支持此类函数。 命令失败。
2818:未知函数 GET_COSTPRICE。如果这是一个 PLSQL 函数,请注意 SQL 语句中尚不支持此类函数。
命令失败。
TimesTen 刚刚告诉你这是不可能的:
请注意,SQL 语句中尚不支持此类函数。
您只能在 pl/sql 块内调用 PLSQL
BEGIN :res=GET_COSTPRICE() END;