Exemplo n.º 1
0
 public void convertFromRawBytes(
     byte[] rawBytes, int offset, ConvTable ccsidConverter, boolean ignoreConversionErrors)
     throws SQLException {
   int locatorHandle = BinaryConverter.byteArrayToInt(rawBytes, offset);
   locator_.setHandle(locatorHandle);
   locator_.setColumnIndex(columnIndex_);
   // @J5A reset saved handle after setting new value
   savedObject_ = null;
 }
Exemplo n.º 2
0
 public void convertFromRawBytes(byte[] rawBytes, int offset, ConvTable ccsidConverter)
     throws SQLException {
   int locatorHandle = BinaryConverter.byteArrayToInt(rawBytes, offset);
   locator_.setHandle(locatorHandle);
   locator_.setColumnIndex(columnIndex_);
 }
Exemplo n.º 3
0
 public void setHandle(int handle) {
   locator_.setHandle(handle);
 }
Exemplo n.º 4
0
 public void setHandle(int handle) {
   locator_.setHandle(handle);
   // @J5A reset savedObject after setting handle
   savedObject_ = null;
 }