Lines Matching refs:sql

80     private java.sql.ResultSet jdbcResultSet;
85 public JavaSQLResultSet(java.sql.ResultSet jdbcResultSet, JavaSQLConnection connection) { in JavaSQLResultSet()
89 …public JavaSQLResultSet(java.sql.ResultSet jdbcResultSet, JavaSQLConnection connection, Object sta… in JavaSQLResultSet()
105 } catch (java.sql.SQLException jdbcSqlException) { in postDisposing()
204 } catch (java.sql.SQLException exception) { in getCursorName()
212 } catch (java.sql.SQLException exception) { in getFetchDirection()
220 } catch (java.sql.SQLException exception) { in setFetchDirection()
228 } catch (java.sql.SQLException exception) { in getFetchSize()
236 } catch (java.sql.SQLException exception) { in setFetchSize()
244 } catch (java.sql.SQLException exception) { in getResultSetConcurrency()
252 } catch (java.sql.SQLException exception) { in getResultSetType()
263 } catch (java.sql.SQLException exception) { in findColumn()
272 } catch (java.sql.SQLException exception) { in getBinaryStream()
281 } catch (java.sql.SQLException exception) { in getCharacterStream()
290 } catch (java.sql.SQLException exception) { in getBoolean()
299 } catch (java.sql.SQLException exception) { in getByte()
308 } catch (java.sql.SQLException exception) { in getBytes()
316 java.sql.Date jdbcDate = jdbcResultSet.getDate(columnIndex); in getDate()
322 } catch (java.sql.SQLException exception) { in getDate()
331 } catch (java.sql.SQLException exception) { in getDouble()
340 } catch (java.sql.SQLException exception) { in getFloat()
349 } catch (java.sql.SQLException exception) { in getInt()
358 } catch (java.sql.SQLException exception) { in getRow()
367 } catch (java.sql.SQLException exception) { in getLong()
375 java.sql.ResultSetMetaData jdbcMetaData = jdbcResultSet.getMetaData(); in getMetaData()
381 } catch (java.sql.SQLException exception) { in getMetaData()
389 java.sql.Array array = jdbcResultSet.getArray(columnIndex); in getArray()
395 } catch (java.sql.SQLException exception) { in getArray()
403 java.sql.Clob clob = jdbcResultSet.getClob(columnIndex); in getClob()
409 } catch (java.sql.SQLException exception) { in getClob()
417 java.sql.Blob blob = jdbcResultSet.getBlob(columnIndex); in getBlob()
423 } catch (java.sql.SQLException exception) { in getBlob()
431 java.sql.Ref ref = jdbcResultSet.getRef(columnIndex); in getRef()
437 } catch (java.sql.SQLException exception) { in getRef()
457 } else if (object instanceof java.sql.Date) { in getObject()
458 ret = DBTypeConversion.toDate(((java.sql.Date)object).toString()); in getObject()
459 } else if (object instanceof java.sql.Time) { in getObject()
460 ret = DBTypeConversion.toTime(((java.sql.Time)object).toString()); in getObject()
461 } else if (object instanceof java.sql.Timestamp) { in getObject()
462 ret = DBTypeConversion.toDateTime(((java.sql.Timestamp)object).toString()); in getObject()
465 } catch (java.sql.SQLException exception) { in getObject()
474 } catch (java.sql.SQLException exception) { in getShort()
488 } catch (java.sql.SQLException exception) { in getString()
496 java.sql.Time time = jdbcResultSet.getTime(columnIndex); in getTime()
502 } catch (java.sql.SQLException exception) { in getTime()
510 java.sql.Timestamp timestamp = jdbcResultSet.getTimestamp(columnIndex); in getTimestamp()
516 } catch (java.sql.SQLException exception) { in getTimestamp()
525 } catch (java.sql.SQLException exception) { in isAfterLast()
534 } catch (java.sql.SQLException exception) { in isFirst()
543 } catch (java.sql.SQLException exception) { in isLast()
552 } catch (java.sql.SQLException exception) { in beforeFirst()
561 } catch (java.sql.SQLException exception) { in afterLast()
570 } catch (java.sql.SQLException exception) { in first()
579 } catch (java.sql.SQLException exception) { in last()
588 } catch (java.sql.SQLException exception) { in absolute()
597 } catch (java.sql.SQLException exception) { in relative()
606 } catch (java.sql.SQLException exception) { in previous()
620 } catch (java.sql.SQLException exception) { in rowDeleted()
629 } catch (java.sql.SQLException exception) { in rowInserted()
638 } catch (java.sql.SQLException exception) { in rowUpdated()
647 } catch (java.sql.SQLException exception) { in isBeforeFirst()
656 } catch (java.sql.SQLException exception) { in next()
665 } catch (java.sql.SQLException exception) { in wasNull()
674 } catch (java.sql.SQLException exception) { in clearWarnings()
682 java.sql.SQLWarning javaWarning = jdbcResultSet.getWarnings(); in getWarnings()
693 } catch (java.sql.SQLException sqlException) { in getWarnings()
702 } catch (java.sql.SQLException exception) { in insertRow()
711 } catch (java.sql.SQLException exception) { in updateRow()
720 } catch (java.sql.SQLException exception) { in deleteRow()
729 } catch (java.sql.SQLException exception) { in cancelRowUpdates()
738 } catch (java.sql.SQLException exception) { in moveToInsertRow()
747 } catch (java.sql.SQLException exception) { in moveToCurrentRow()
756 } catch (java.sql.SQLException exception) { in updateNull()
765 } catch (java.sql.SQLException exception) { in updateBoolean()
774 } catch (java.sql.SQLException exception) { in updateByte()
783 } catch (java.sql.SQLException exception) { in updateShort()
792 } catch (java.sql.SQLException exception) { in updateInt()
801 } catch (java.sql.SQLException exception) { in updateLong()
810 } catch (java.sql.SQLException exception) { in updateFloat()
819 } catch (java.sql.SQLException exception) { in updateDouble()
828 } catch (java.sql.SQLException exception) { in updateString()
837 } catch (java.sql.SQLException exception) { in updateBytes()
845 … jdbcResultSet.updateDate(columnIndex, java.sql.Date.valueOf(DBTypeConversion.toDateString(x))); in updateDate()
846 } catch (java.sql.SQLException exception) { in updateDate()
854 … jdbcResultSet.updateTime(columnIndex, java.sql.Time.valueOf(DBTypeConversion.toTimeString(x))); in updateTime()
855 } catch (java.sql.SQLException exception) { in updateTime()
864 java.sql.Timestamp.valueOf(DBTypeConversion.toDateTimeString(x))); in updateTimestamp()
865 } catch (java.sql.SQLException exception) { in updateTimestamp()
875 } catch (java.sql.SQLException exception) { in updateBinaryStream()
887 } catch (java.sql.SQLException exception) { in updateCharacterStream()
911 } catch (IllegalArgumentException | java.sql.SQLException exception) { in updateNumericObject()
920 } catch (java.sql.SQLException exception) { in refreshRow()