> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kasoftware.com/llms.txt
> Use this file to discover all available pages before exploring further.

# BigCommerce 执行存储过程配置

> 使用存储过程处理知行之桥消息中的数据，并将结果传递到流程下游。

export const DbasaESP = ({datasource = "the data source", siteName = "知行之桥"}) => {
  return <>
      <p>
        执行存储过程操作将进入 {datasource} 端口的数据视为存储过程的输入，然后它执行您所选择的存储过程并将结果向下传递（如果适用）。
      </p>

      <p>按照以下步骤配置存储过程：</p>

      <ol>
        <li>
          从下拉菜单中选择一个存储过程。可用的存储过程取决于端口，不能在 {siteName} 中进行自定义。
          <img src="/public/images/dbsa_esp_select.png" alt="Select stored procedure" width="650" />
          可以查看存储过程的输入和输出参数，以及任何返回值（如果适用）。
        </li>
        <li>
          单击 <strong>测试存储过程</strong> 以查看输入 XML 的结构应是什么样子。
          <img src="/public/images/dbsa_esp_test.png" alt="ESP test" width="700" />
        </li>
        <li>
          完成 <strong>输入</strong> 参数并单击 <strong>测试</strong> 以查看将生成什么输出。当您对测试结果感到满意时，可以单击 <strong>保存示例数据</strong> 以使其他端口可以访问数据。
          <img src="/public/images/dbsa_esp_sample.png" alt="ESP sample data" width="750" />
        </li>
      </ol>

      <p>
        您可以将 {datasource} 端口连接到 XML Map 端口。执行存储过程的结果显示为 <strong>源文件</strong> 树下的输入。
      </p>

      <img src="/public/images/dbsa_esp_xmlmap.png" alt="ESP XML map" width="200" />
    </>;
};

<DbasaESP datasource="BigCommerce" />
