• <bdo id='G9iYD'></bdo><ul id='G9iYD'></ul>
      <i id='G9iYD'><tr id='G9iYD'><dt id='G9iYD'><q id='G9iYD'><span id='G9iYD'><b id='G9iYD'><form id='G9iYD'><ins id='G9iYD'></ins><ul id='G9iYD'></ul><sub id='G9iYD'></sub></form><legend id='G9iYD'></legend><bdo id='G9iYD'><pre id='G9iYD'><center id='G9iYD'></center></pre></bdo></b><th id='G9iYD'></th></span></q></dt></tr></i><div id='G9iYD'><tfoot id='G9iYD'></tfoot><dl id='G9iYD'><fieldset id='G9iYD'></fieldset></dl></div>
        <tfoot id='G9iYD'></tfoot>

      1. <small id='G9iYD'></small><noframes id='G9iYD'>

        <legend id='G9iYD'><style id='G9iYD'><dir id='G9iYD'><q id='G9iYD'></q></dir></style></legend>

        使用 Web 服务并使用 Node.js 将 CLOB 插入 Oracle 数据

        时间:2023-08-20
      2. <small id='UVvIz'></small><noframes id='UVvIz'>

      3. <legend id='UVvIz'><style id='UVvIz'><dir id='UVvIz'><q id='UVvIz'></q></dir></style></legend>
          • <i id='UVvIz'><tr id='UVvIz'><dt id='UVvIz'><q id='UVvIz'><span id='UVvIz'><b id='UVvIz'><form id='UVvIz'><ins id='UVvIz'></ins><ul id='UVvIz'></ul><sub id='UVvIz'></sub></form><legend id='UVvIz'></legend><bdo id='UVvIz'><pre id='UVvIz'><center id='UVvIz'></center></pre></bdo></b><th id='UVvIz'></th></span></q></dt></tr></i><div id='UVvIz'><tfoot id='UVvIz'></tfoot><dl id='UVvIz'><fieldset id='UVvIz'></fieldset></dl></div>
            • <tfoot id='UVvIz'></tfoot>

                  <tbody id='UVvIz'></tbody>

                  <bdo id='UVvIz'></bdo><ul id='UVvIz'></ul>
                  本文介绍了使用 Web 服务并使用 Node.js 将 CLOB 插入 Oracle 数据库表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我需要使用 node js 使用第三方 webservice 并将其写入 oracle table .基本上我得到了获取数据的代码.基本上需要获取该输出并插入到 Oracle clob 列中.有人可以通过示例指导我.

                  i need to consume third party webservice using node js and write it on oracle table . basically i got the code for getting the data. Basically need to take that output and insert into a Oracle clob columns.Can someone guide me with examples.

                  推荐答案

                  一些资源:

                  • https://github.com/oracle/node-oracledb/tree/master/examples 有 LOB 示例,例如 lobinsert1.js 和 lobinsert2.js

                  • https://github.com/oracle/node-oracledb/tree/master/examples has LOB examples, for example lobinsert1.js and lobinsert2.js

                  node-oracledb 手册中有大量关于在 node-oracledb 中使用 LOB 的文档,请参阅 使用 CLOB、NCLOB 和 BLOB 数据.

                  There is plenty of documentation on using LOBs in node-oracledb in the node-oracledb manual, see Working with CLOB, NCLOB and BLOB Data.

                  例如:

                      // Insert a CLOB
                      const str = fs.readFileSync(clobInFileName, 'utf8');
                      result = await connection.execute(
                        `INSERT INTO no_lobs (id, c) VALUES (:id, :c)`,
                        { id: 1, c: str }
                      );
                      if (result.rowsAffected != 1)
                        throw new Error('CLOB was not inserted');
                      else
                        console.log('CLOB inserted from ' + clobInFileName);
                  

                  在您的情况下,您将从您的网络服务而不是磁盘读取 str文件.由于我不知道该网络服务是什么,因此无法发表更多评论.

                  In your case you would read str from your web service instead of a disk file. Since I don't know what that web service is, I can't comment more.

                  node-oracledb 的安装说明在这里.

                  Installation instructions for node-oracledb are here.

                  这篇关于使用 Web 服务并使用 Node.js 将 CLOB 插入 Oracle 数据库表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:MAC OS X 10.6 上 MySQL C API 的编译问题 下一篇:使用 Web 服务并使用 Node.js 将 CLOB 插入 Oracle 数据

                  相关文章

                  最新文章

                  <small id='0e3lw'></small><noframes id='0e3lw'>

                    <bdo id='0e3lw'></bdo><ul id='0e3lw'></ul>

                    <legend id='0e3lw'><style id='0e3lw'><dir id='0e3lw'><q id='0e3lw'></q></dir></style></legend>

                  1. <tfoot id='0e3lw'></tfoot>
                    1. <i id='0e3lw'><tr id='0e3lw'><dt id='0e3lw'><q id='0e3lw'><span id='0e3lw'><b id='0e3lw'><form id='0e3lw'><ins id='0e3lw'></ins><ul id='0e3lw'></ul><sub id='0e3lw'></sub></form><legend id='0e3lw'></legend><bdo id='0e3lw'><pre id='0e3lw'><center id='0e3lw'></center></pre></bdo></b><th id='0e3lw'></th></span></q></dt></tr></i><div id='0e3lw'><tfoot id='0e3lw'></tfoot><dl id='0e3lw'><fieldset id='0e3lw'></fieldset></dl></div>