0

问候,

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

但是,单击“运行”按钮后,它什么也没做,怀疑有任何 javascript 错误,我拔出了 firebug,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;
};
4

1 回答 1

0

“但我认为它与 SQL 无关”

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

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

于 2011-02-27T02:47:16.313 回答