2009-09-01 2 views
0

인사말,Oracle Application Express로 SQL 스크립트 실행

Oracle DBMS 용 웹 기반 인터페이스 인 Application Express (APEX)를 사용하여 업로드 한 SQL 스크립트를 실행하려고합니다.

그러나 실행 단추를 클릭하면 아무런 오류가 없으며 자바 스크립트 오류가 의심 스럽습니다. 방화 광구를 꺼내서 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; 
}; 
+0

SQL 스크립트를 게시하고 자바 스크립트의 일부분에 방화 광 오류가 표시 될 수 있습니까? –

+0

SQL을 게시 할 수 있는지 여부는 확실하지 않지만 실행 명령을 지나치지 않았으므로 SQL과 아무 관련이 없다고 생각합니다. js 코드로 내 게시물을 편집했습니다. CodeRange.prototype.setStartBeforeEnd = 함수() { 경우 (this.endLine.isPreceding (this.startLine) || (this.endLine == this.startLine && this.endCol

+0

아, 댓글에서 코드를 삭제하는 것을 잊어 버렸습니다. 사과드립니다. :( –

답변

0

당신은 가능성을 좁힐 수있는 또 다른 파일을 테스트 할 수

"하지만 나는 그것이 SQL과는 아무 상관이 없다고 생각".

아마도 파일 인코딩에 문제가 있다고 생각합니다. Application Express에서 편집 할 수 있습니까?

관련 문제