0
挨拶、のOracle Application ExpressとSQLスクリプトの実行
は、Application Expressの(APEX)は、Oracle DBMSのためのWebベースのインターフェイスを使用してアップロード。
しかし、[実行]ボタンをクリックすると、何も起こりません。ジャバスクリプトのエラーが疑われる場合、私は火元爆弾を取り出し、jsにエラーがあるようです。
this.endLine.isPreceding is not a function
http://localhost:8080/i/editor/codearea.xbl.xml
Line 2864
Firebugによって報告されたもの。
これに関するアイデアはありますか?
ありがとうございます。
-aw
EDIT: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;
};
SQLスクリプトとjavascriptの部分にfirebugエラーのポイントを投稿できますか? –
私はSQLを投稿することが許可されているかどうかはわかりませんが、SQLとは何の関係もないと思います。 私はjsコードで投稿を編集しました。 CodeRange.prototype.setStartBeforeEnd =関数(){ IF(this.endLine.isPreceding(this.startLine)|| (this.endLine == this.startLine && this.endCol
ああ、コメントからコードを削除するのを忘れて、謝罪します。 :( –