Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

jsqlparser 에서 Unicode 입력이 불가하여 한글 입출력이 안 됨.

 

조치

  1. src/main/javacc/JSqlParserCC.jj 를 열어서 다음 내용을 추가

    before
    options{
        IGNORE_CASE=true ;
        STATIC=false;
    //  DEBUG_LOOKAHEAD= true ;
    //  FORCE_LA_CHECK=true;
    //  DEBUG_TOKEN_MANAGER=true;
    }
    After
    options{
        IGNORE_CASE=true ;
        STATIC=false;
        UNICODE_INPUT = true;
    //  DEBUG_LOOKAHEAD= true ;
    //  FORCE_LA_CHECK=true;
    //  DEBUG_TOKEN_MANAGER=true;
    }

     

     

     
  2. javacc 로 compile
  3. 11

 

 

Ref

 

  • No labels