2009-09-01 9 views
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; 
}; 
+0

SQLスクリプトとjavascriptの部分にfirebugエラーのポイントを投稿できますか? –

+0

私はSQLを投稿することが許可されているかどうかはわかりませんが、SQLとは何の関係もないと思います。 私はjsコードで投稿を編集しました。 CodeRange.prototype.setStartBeforeEnd =関数(){ IF(this.endLine.isPreceding(this.startLine)|| (this.endLine == this.startLine && this.endCol

+0

ああ、コメントからコードを削除するのを忘れて、謝罪します。 :( –

答えて

0

あなたは可能性を狭めるために別のファイルをテストすることができ

"私はそれはSQLとは何の関係もないと思います"。

おそらく、ファイルのエンコーディングに問題があると思います。 Application Expressで編集できますか?

関連する問題