犊子哥哥 2017-04-16 10:11 采纳率: 11.1%
浏览 907

关于 ORACLE DBMS_SQL 的一些问题

谁能解释下 DBMS_SQL 的参数,比如说 这个 dbms_sql.parse(V_cur,SQL_string,DBMS_SQL.NATIVE);三个参数分别代表什么意思!

  • 写回答

1条回答 默认 最新

  • 犊子哥哥 2017-04-16 10:13
    关注

    找到了,不过缺一个英语大神:

       procedure parse(c in integer, statement in varchar2,
                      language_flag in integer);
      --  Parse the given statement in the given cursor. NOTE THAT PARSING AND
      --  EXECUTING DDL STATEMENTS CAN CAUSE HANGS!
      --  Currently, the deferred parsing feature of the Oracle  Call Interface
      --  is not used. As a result, statements are parsed immediately. In addition,
      --  DDL statements are executed immediately when parsed. However,
      --  the behavior may
      --  change in the future so that the actual parsing (and execution of DDL
      --  statement) do not occur until the cursor is executed with "execute".
      --  DO NOT RELY ON THE CURRENT TIMING OF THE ACTUAL PARSING!
      --  Input parameters:
      --    c
      --      Cursor id number of the cursor in where to parse the statement.
      --    statement
      --      Statement to parse.
      --    language_flag
      --      Specifies behavior for statement. Valid values are v6, v7 and NATIVE.
      --      v6 and v7 specifies behavior according to Version 6 and ORACLE7,
      --      respectively. NATIVE specifies behavior according to the version
      --      of the database the program is connected to.
    
    评论

报告相同问题?

悬赏问题

  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘
  • ¥15 matlab有关常微分方程的问题求解决
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿
  • ¥15 回答4f系统的像差计算
  • ¥15 java如何提取出pdf里的文字?
  • ¥100 求三轴之间相互配合画圆以及直线的算法
  • ¥100 c语言,请帮蒟蒻写一个题的范例作参考