Commit f920011a authored by vkadam's avatar vkadam

Remove trim from select statement.


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@97168 ce508802-f39f-4f6c-b175-0d175dae99d5
parent a9cf8221
...@@ -218,15 +218,15 @@ QcOdrProvisionalReleaseConfLocal, QcOdrProvisionalReleaseConfRemote ...@@ -218,15 +218,15 @@ QcOdrProvisionalReleaseConfLocal, QcOdrProvisionalReleaseConfRemote
rs = pstmt.executeQuery(); rs = pstmt.executeQuery();
if (rs.next()) { if (rs.next()) {
// quantity = rs.getDouble("quantity"); // quantity = rs.getDouble("quantity");
quantity = checkNull(rs.getString("quantity").trim()); quantity = checkNull(rs.getString("quantity"));
itemCode = checkNull(rs.getString("item_code").trim()); itemCode = checkNull(rs.getString("item_code"));
locCodeFrm = checkNull(rs.getString("loc_code").trim()); locCodeFrm = checkNull(rs.getString("loc_code"));
porcpNo = checkNull(rs.getString("porcp_no").trim()); porcpNo = checkNull(rs.getString("porcp_no"));
lotNo = checkNull(rs.getString("lot_no").trim()); lotNo = checkNull(rs.getString("lot_no"));
lotSl = checkNull(rs.getString("lot_sl").trim()); lotSl = checkNull(rs.getString("lot_sl"));
batchNo = checkNull(rs.getString("batch_no").trim()); batchNo = checkNull(rs.getString("batch_no"));
siteCode = checkNull(rs.getString("site_code").trim()); siteCode = checkNull(rs.getString("site_code"));
trnfQty=checkNull(rs.getString("QTY_TRANSFERED").trim()); trnfQty=checkNull(rs.getString("QTY_TRANSFERED"));
} }
rs.close(); rs.close();
rs = null; rs = null;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment