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

firebugによって報告されたもの。

これに関するアイデアはありますか?

前もって感謝します。

-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 に答える