Arushi has Published 157 Articles

Java ResultSet getDriverMajorVersion() method with example

Arushi

Arushi

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

79 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 ... Read More

Java ResultSet deleteRow() method with example

Arushi

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 ... Read More

Java ResultSet beforeFirst() method with example

Arushi

Arushi

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

3K+ 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 ... Read More

Java ResultSet afterLast() method with example

Arushi

Arushi

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

902 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 ... Read More

Java ResultSet wasNull() method with example

Arushi

Arushi

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

6K+ 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 ... Read More

Java ResultSetMetaData getScale() method with example

Arushi

Arushi

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

281 Views

The getScale() method of the ResultSetMetaData (interface) retrieves the number of digits after the right of the decimal point in the given column.This method accepts an integer value representing the index of a column. and returns an integer value representing the number of digits after the decimal in the specified column.To ... Read More

Java ResultSetMetaData getColumnType() method with example

Arushi

Arushi

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

4K+ Views

The getColumnType() method of the ResultSetMetaData (interface) retrieves the type of the specified column in the current ResultSet object.This method accepts an integer value representing the index of a column and, returns an integer value representing the SQL type of the specified column.Following is the list of values returned by various ... Read More

Java ResultSetMetaData isAutoIncrement() method with example

Arushi

Arushi

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

186 Views

The is AutoIncrement() method of the ResultSetMetaData (interface) determines whether a particular column in the current ResultSet object is automatically numbered.This method accepts an integer value representing the index of a column and, returns a boolean value which is −True, if the specified column is automatically numbered.False, if the specified column ... Read More

Java DatabaseMetaData supportsBatchUpdates() method with example

Arushi

Arushi

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

168 Views

The supportsBatchUpdates() method of the DatabaseMetaData interface is used to determine whether the underlying database supports batch updates.This method returns a boolean value which is −True, when the underlying database supports stored porcedures.False, when the underlying database doesn't support stored porcedures.To determine whether the underlying database supports stored porcedures −Make ... Read More

Java DatabaseMetaData supportsTransactionIsolationLevel() method with example

Arushi

Arushi

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

83 Views

JDBC provides support 5 transaction isolation levels through Connection interface.TRANSACTION_NONE: It is represented by integer value 0 does not support transactions.TRANSACTION_READ_COMMITTED: It is represented by integer value 2 supports transactions allowing Non-Repeatable Reads and, Phantom Reads.TRANSACTION_READ_UNCOMMITTED: It is represented by integer value 1 supports transactions allowing Dirty Reads, Non-Repeatable Reads ... Read More

Previous 1 ... 6 7 8 9 10 ... 16 Next
Advertisements