blob: ca2c7f2fcf2b43fcb09085ca71addf7d47ba5681 [file] [log] [blame]
// @@@ START COPYRIGHT @@@
//
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
//
// @@@ END COPYRIGHT @@@
package org.trafodion.jdbc.t4;
import java.sql.SQLException;
class ExtractLobReply {
int totalErrorLength;
SQLWarningOrError[] errorList;
odbc_SQLSvc_ExtractLob_exc_ m_p1;
String proxySyntax = "";
int lobDataLen = 0;
byte[] lobDataValue = null;
ExtractLobReply(LogicalByteArray buf, InterfaceConnection ic) throws SQLException {
buf.setLocation(Header.sizeOf());
try {
m_p1 = new odbc_SQLSvc_ExtractLob_exc_();
m_p1.extractFromByteArray(buf, ic);
if (m_p1.exception_nr == TRANSPORT.CEE_SUCCESS) {
lobDataLen = (int) buf.extractInt();
if (lobDataLen > 0) {
lobDataValue = buf.extractByteArray(lobDataLen);
}
}
}
catch (SQLException e) {
throw e;
}
catch (Exception e) {
throw TrafT4Messages.createSQLException(ic.t4props_, ic.getLocale(), "unsupported_encoding", "UTF-8");
}
}
}