/* */
/* 192 */ rs = pstmt.executeQuery();
/* */
/* 194 */ if (rs.next())
/* */ {
/* 196 */ BLOB myBlob = (BLOB)rs.getBlob(1);
/* 197 */ myBlob.putBytes(1L, b);
/* */ }
/* */ else
/* */ {
/* 201 */ pstmt2 = this._preparedStatements[pool][6];
/* */
/* 203 */ if (pstmt2 == null)
/* */ {
/* 205 */ pstmt2 = this._theConnection[pool].prepareStatement("INSERT INTO " + tableName + " (StateType,TypeName,UidString,ObjectState) VALUES (?,?,?,empty_blob())");
/* */
/* 207 */ this._preparedStatements[pool][6] = pstmt2;
/* */ }
/* */
/* 210 */ pstmt2.setInt(1, s);
/* 211 */ pstmt2.setString(2, tName);
/* 212 */ pstmt2.setString(3, objUid.stringForm());
/* */
/* 214 */ pstmt2.executeUpdate();
/* 215 */ this._theConnection[pool].commit();
/* */
/* 217 */ PreparedStatement pstmt3 = this._preparedStatements[pool][8];
/* 218 */ if (pstmt3 == null) {
/* 219 */ pstmt3 = this._theConnection[pool].prepareStatement("SELECT ObjectState FROM " + tableName + " WHERE UidString = ? AND TypeName = ? AND StateType = ? FOR UPDATE");
/* 220 */ this._preparedStatements[pool][8] = pstmt3;
/* */ }
/* */
/* 223 */ pstmt3.setString(1, objUid.stringForm());
/* 224 */ pstmt3.setString(2, tName);
/* 225 */ pstmt3.setInt(3, s);
/* */
/* 227 */ rs3 = pstmt3.executeQuery();
/* 228 */ rs3.next();
/* 229 */ BLOB myBlob = (BLOB)rs3.getBlob(1);
/* 230 */ myBlob.putBytes(1L, b);
/* */ }
/* */
/* 233 */ this._theConnection[pool].commit();
/* 234 */ pstmt2 = 1;
/* */ try