有没有更简单的方法来发现 MemSQL 中的函数参数?

Is there an easier way to discover function parameters in MemSQL?

我需要枚举 MemSQL 函数中的所有参数。除了使用 SHOW CREATE FUNCTION 然后解析定义之外,还有更简单的方法吗?例如,当使用 MySql 时,我可以使用

connection.GetSchema("Procedure Parameters",
    new string[] { null, database, structureName });

遗憾的是,目前确实没有更好的方法。您的示例中的 GetSchema 方法使用了 MemSQL 当前不支持的 MySQL 元数据 table。