Lines Matching refs:row

102     private XRow row = null ;  field in _XRowUpdate
112 row = (XRow) tEnv.getObjRelation("XRowUpdate.XRow") ; in before()
132 if (rowData.get(i) instanceof String) row.getString(i + 1) ; in _updateNull()
133 if (rowData.get(i) instanceof Boolean) row.getBoolean(i + 1) ; in _updateNull()
134 if (rowData.get(i) instanceof Byte) row.getByte(i + 1) ; in _updateNull()
135 if (rowData.get(i) instanceof Short) row.getShort(i + 1) ; in _updateNull()
136 if (rowData.get(i) instanceof Integer) row.getInt(i + 1) ; in _updateNull()
137 if (rowData.get(i) instanceof Long) row.getLong(i + 1) ; in _updateNull()
138 if (rowData.get(i) instanceof Float) row.getFloat(i + 1) ; in _updateNull()
139 if (rowData.get(i) instanceof Double) row.getDouble(i + 1) ; in _updateNull()
140 if (rowData.get(i) instanceof byte[]) row.getBytes(i + 1) ; in _updateNull()
141 if (rowData.get(i) instanceof Date) row.getDate(i + 1) ; in _updateNull()
142 if (rowData.get(i) instanceof Time) row.getTime(i + 1) ; in _updateNull()
144 row.getTimestamp(i + 1) ; in _updateNull()
146 row.getBinaryStream(i + 1) ; in _updateNull()
148 row.getCharacterStream(i + 1) ; in _updateNull()
151 if (!row.wasNull()) { in _updateNull()
185 boolean newVal = !row.getBoolean(idx) ; in _updateBoolean()
187 boolean getVal = row.getBoolean(idx) ; in _updateBoolean()
214 byte newVal = (byte) (row.getByte(idx) + 1) ; in _updateByte()
216 byte getVal = row.getByte(idx) ; in _updateByte()
243 short newVal = (short) (row.getShort(idx) + 1) ; in _updateShort()
245 short getVal = row.getShort(idx) ; in _updateShort()
272 int newVal = 1 + row.getInt(idx) ; in _updateInt()
274 int getVal = row.getInt(idx) ; in _updateInt()
301 long newVal = 1 + row.getLong(idx) ; in _updateLong()
303 long getVal = row.getLong(idx) ; in _updateLong()
330 float newVal = (float) (1.1 + row.getFloat(idx)); in _updateFloat()
332 float getVal = row.getFloat(idx) ; in _updateFloat()
359 double newVal = 1.1 + row.getDouble(idx) ; in _updateDouble()
361 double getVal = row.getDouble(idx) ; in _updateDouble()
388 String newVal = "_" + row.getString(idx) ; in _updateString()
390 String getVal = row.getString(idx) ; in _updateString()
419 byte[] newVal = row.getBytes(idx) ; in _updateBytes()
426 byte[] getVal = row.getBytes(idx) ; in _updateBytes()
453 Date newVal = row.getDate(idx) ; in _updateDate()
456 Date getVal = row.getDate(idx) ; in _updateDate()
483 Time newVal = row.getTime(idx) ; in _updateTime()
486 Time getVal = row.getTime(idx) ; in _updateTime()
513 DateTime newVal = row.getTimestamp(idx) ; in _updateTimestamp()
516 DateTime getVal = row.getTimestamp(idx) ; in _updateTimestamp()
550 XInputStream getVal = row.getBinaryStream(idx) ; in _updateBinaryStream()
587 XInputStream getVal = row.getCharacterStream(idx) ; in _updateCharacterStream()