Skip to content

Commit

Permalink
Merge pull request #185 from experdb/development
Browse files Browse the repository at this point in the history
[no issue]
  • Loading branch information
kayform authored Mar 22, 2022
2 parents b5048f6 + c0b324b commit e486a16
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build-all.bat
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ SET "PATH=%PATH%;%PROGRAMFILES%\Git\bin;C:\apache-ant-1.9.9-bin;C:\Program Files

For /F %%g in ('git rev-parse HEAD ^| cut -b 1-7') Do (Set GIT_COMMIT_HASH=%%g)

set BASE_VER=13.0.11
set BASE_VER_UDERSCORE=13_0_11
set BASE_VER=13.0.12
set BASE_VER_UDERSCORE=13_0_12
For /F %%i in ('git rev-list HEAD ^| find /c /v ""') Do Set GIT_COMMIT_CNT=%%i


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public JSONArray perform(String tran_cd, String req_data) throws Exception {
sessDB = sqlSessionFactory.openSession(connDB);

List<HashMap<String, Object>> schemaList = new ArrayList<HashMap<String,Object>>();
schemaList = sessionCollect.selectList("app.DX004_002");
schemaList = sessDB.selectList("app.DX004_002");

String schema = "";

Expand All @@ -100,6 +100,7 @@ public JSONArray perform(String tran_cd, String req_data) throws Exception {
log.error("", e);
return resDataArray;
} finally {
if(connDB != null) connDB.close();
if(sessDB != null) sessDB.close();
}

Expand Down

0 comments on commit e486a16

Please sign in to comment.