使用Oracle Application Express运行SQL脚本

时间:2009-09-01 02:46:56

标签: javascript sql oracle oracle-apex

问候,

我正在尝试运行使用Application Express(APEX)上传的SQL脚本,这是基于Web的Oracle DBMS界面。

然而,点击“运行”按钮后,它什么也没做,怀疑任何javascript错误,我拔出了萤火虫,并且js上似乎有错误。

this.endLine.isPreceding is not a function
http://localhost:8080/i/editor/codearea.xbl.xml
Line 2864

萤火虫报告了什么。

对此有什么看法?

提前感谢。

-aw

编辑:js部分

CodeRange.prototype.setStartBeforeEnd = function()
{
  if (this.endLine.isPreceding(this.startLine) ||
    (this.endLine == this.startLine && this.endCol < this.startCol))
  {
    var l = this.endLine;
    this.endLine = this.startLine;
    this.startLine = l;

    var c = this.endCol;
    this.endCol = this.startCol;
    this.startCol = c;
  }
  return this;
};

1 个答案:

答案 0 :(得分:0)

“但我认为它与SQL无关”

您可以测试另一个文件以缩小可能性。

我认为文件编码可能存在问题。你能在Application Express中编辑吗?