全部,我正在尝试使用jdbc连接在Google bigquery中执行存储过程,但是没有运气。
我能够从bigquery Web ui创建和调用存储过程,但是当我使用simba驱动程序在intellij中设置数据源时,如此处https://blog.jetbrains.com/datagrip/2018/07/10/using-bigquery-from-intellij-based-ide/所述
然后当我运行调用以执行存储过程时
DECLARE target_employee_id INT64 DEFAULT 9;
DECLARE employee_hierarchy ARRAY<INT64>;
dataset.GetEmployeeHierarchy(target_employee_id, employee_hierarchy);
SELECT target_employee_id, employee_hierarchy;
我收到错误
[HY000][100032] [Simba][BigQueryJDBCDriver](100032) Error executing query job. Message: Unrecognized name: target_employee_id at [1:8] com.simba.googlebigquery.support.exceptions.GeneralException: [Simba][BigQueryJDBCDriver](100032) Error executing query job. Message: Unrecognized name: target_employee_id at [1:8]
由于存储过程支持处于预发行版Beta中,所以我想知道Simba驱动程序现在是否支持它?如果没有,那么当前是否还有其他的jdbc驱动程序?
因此,所有这4条语句都需要作为一个Bloc而不是单独的语句执行。在intellij中,您可以突出显示所有这些语句并点击运行以执行它并返回结果。在Java中,只需将它们作为单个字符串传递给statement.execute。