Found 4336 Articles for Java 8

How to retrieve the contents of a ResultSet from last to first in JDBC?

Arushi
Updated on 30-Jul-2019 22:30:26

517 Views

ResultSet objectCertain SQL queries (especially SELECT) returns tabular data, In JDBC the object of the java.sql.ResultSet interface holds the tabular data returned by the methods that execute the statements which quires the database (executeQuery() method of the Statement interface in general).ResultSet Cursor/pointerThe ResultSet object has a cursor/pointer which points to the current row. Initially this cursor is positioned before first row.There are two types of result sets namely, forward only and, bidirectional. By default the ResultSet we get by the executeQuery() method is of the type forward only. Using this you can traverse/move the cursor only forward direction.Bidirectional ResultSetA bi-directional ResultSet ... Read More

Java ResultSet isClosed() method with example

Vikyath Ram
Updated on 30-Jul-2019 22:30:26

269 Views

When we execute certain SQL queries (SELECT query in general) they return tabular data.The java.sql.ResultSet interface represents such tabular data returned by the SQL statements.i.e. the ResultSet object holds the tabular data returned by the methods that execute the statements which quires the database (executeQuery() method of the Statement interface in general).The ResultSet object has a cursor/pointer which points to the current row. Initially this cursor is positioned before first row.The isClosed() method of the ResultSet interface is used to determine whether the current ResultSet object is closed.rs.isclosed()CLOSE_CURSORS_AT_COMMITIf the holdability of the ResultSet object is set to this value. Whenever you commit/save ... Read More

Java ResultSet isLast() method with example

Vikyath Ram
Updated on 30-Jul-2019 22:30:26

1K+ Views

When we execute certain SQL queries (SELECT query in general) they return tabular data.The java.sql.ResultSet interface represents such tabular data returned by the SQL statements.i.e. the ResultSet object holds the tabular data returned by the methods that execute the statements which quires the database (executeQuery() method of the Statement interface in general).The ResultSet object has a cursor/pointer which points to the current row. Initially this cursor is positioned before first row.The isAfterLast() method of the ResultSet interface is used to determine whether the cursor is on the last row of the ResultSet.rs.isLast();This method returns an boolean this value is true, if the cursor is ... Read More

Java ResultSet isBeforeFirst() method with example

Arushi
Updated on 30-Jul-2019 22:30:26

2K+ Views

When we execute certain SQL queries (SELECT query in general) they return tabular data.The java.sql.ResultSet interface represents such tabular data returned by the SQL statements.i.e. the ResultSet object holds the tabular data returned by the methods that execute the statements which quires the database (executeQuery() method of the Statement interface in general).The ResultSet object has a cursor/pointer which points to the current row. Initially this cursor is positioned before first row.The isBeforeFirst() method of the ResultSet interface is used to determine whether the cursor is at the default position of the ResultSet.rs.isBeforeFirst();This method returns an boolean this value is true, if the cursor is ... Read More

Java ResultSet isAfterLast() method with example

Rishi Raj
Updated on 30-Jul-2019 22:30:26

576 Views

When we execute certain SQL queries (SELECT query in general) they return tabular data.The java.sql.ResultSet interface represents such tabular data returned by the SQL statements.i.e. the ResultSet object holds the tabular data returned by the methods that execute the statements which quires the database (executeQuery() method of the Statement interface in general).The ResultSet object has a cursor/pointer which points to the current row. Initially this cursor is positioned before first row.The isAfterLast() method of the ResultSet interface is used to determine whether the cursor is after the end of the ResultSet.rs.isAfterLast();This method returns an boolean this value is true, if the cursor is ... Read More

Java DatabaseMetaData getSearchStringEscape() method with example

Vikyath Ram
Updated on 30-Jul-2019 22:30:26

104 Views

The getSearchStringEscape() method of the DatabaseMetaData interface is used to get the that is used to escape the wildcard characters ('_' or, '%') by the underlying database.This method returns a string parameter representing the value that is used to escape wildcard charactersTo get the DatabaseMetaData object −Make sure your database is up and running.Register the driver using the registerDriver() method of the DriverManager class. Pass an object of the driver class corresponding to the underlying database.Get the connection object using the getConnection() method of the DriverManager class. Pass the URL the database and, user name, password of a user in the database, ... Read More

Java DatabaseMetaData getTypeInfo() method with example

Vikyath Ram
Updated on 30-Jul-2019 22:30:26

333 Views

The getTypeInfo() method of the DatabaseMetadata interface is used to get the description of all the data-types supported by the underlying database.This method returns a ResultSet object describing data types supported. This object holds values for the following details (as column names) −Column NameData TypeDescriptionTYPE_NAMEStringName of the data type.DATA_TYPEintInteger value representing this datatype.PRECISIONintMaximum precision of this datatype.LITERAL_PREFIXStringPrefix used to quote a string literal.LITERAL_SUFFIXStringsuffix used to quote a string literal.CASE_SENSITIVEbooleanDetermines whether this datatype is case sensitiveUNSIGNED_ATTRIBUTEbooleanDetermines whether this datatype is an un-signed attribute.FIXED_PREC_SCALEbooleanDetermines whether the current datatype can be used as a value of currency.AUTO_INCREMENTbooleanDetermines whether the current datatype can be used ... Read More

The DatabaseMetaData getResultSetHoldability() method with example

Arushi
Updated on 30-Jul-2019 22:30:26

71 Views

ResultSet holdability determines whether the ResultSet objects (cursors) should be closed or held open when a transaction (that contains the said cursor/ResultSet object) is committed using the commit() method of the Connection interface.The getResultSetHoldability() method of the DatabaseMetaData interface retrieves the default holdability for the ResultSet objects of the underlying database.This method returns an integer value representing the default ResultSet holdability, which will be either 1 or 2 where, 1 indicates the value HOLD_CURSORS_OVER_COMMIT. If the holdability of the ResultSet object is set to this value. Whenever you commit/save a transaction using the commit() method of the Connection interface, the ResultSet ... Read More

Java DatabaseMetaData getTableTypes() method with example

Rishi Raj
Updated on 30-Jul-2019 22:30:26

214 Views

The getTableTypes() method of the DatabaseMetadata interface is used to find out the type of tables supported by the underlying database.This method returns a ResultSet object holding the names of table types in each row in String format, under the column TABLE_TYPE.To get the description DatabaseMetadata object.Make sure your database is up and running.Register the driver using the registerDriver() method of the DriverManager class. Pass an object of the driver class corresponding to the underlying database.Get the connection object using the getConnection() method of the DriverManager class. Pass the URL the database and, user name, password of a user in the database, ... Read More

Java DatabaseMetaData getTimeDateFunctions() method with example

Vikyath Ram
Updated on 30-Jul-2019 22:30:26

44 Views

This method retrieves the list of time and date functions supported by the current database. The names returned by this method are the Open CLI time and date function names.This method returns a String value holding the list of functions separated by commas (", ").To get the list of the time and date functions supported by the underlying database −Make sure your database is up and running.Register the driver using the registerDriver() method of the DriverManager class. Pass an object of the driver class corresponding to the underlying database.Get the connection object using the getConnection() method of the DriverManager class. Pass ... Read More

Advertisements