Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint
Cover Image
Cover Image
Drag to reposition
Contributed Answers

Java ResultSet getMetaData() method with example

Answered 2h 36m ago, 0 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 ob.....

Java ResultSet getType() method with example

Answered 2h 45m ago, 0 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 .....

Java ResultSet last() method with example

Answered 2h 47m ago, 0 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 ob.....

Java ResultSet moveToInsertRow() method with example

Answered 2h 56m ago, 0 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 .....

Java ResultSet next() method with example

Answered 3h 0m ago, 0 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 .....

Java DatabaseMetaData getURL() method with example

Answered 3h 17m ago, 0 Views

This method retrieves the URL of the underlying Database Management System and returns in the form of a String variable. To get the list URL of the underlying DBMS − 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 .....

Java DatabaseMetaData getTables() method with example

Answered 3h 20m ago, 0 Views

This method retrieves the description of the tables available in the specified database/catalog. It accepts 4 parameters − catalog   − A string parameter representing the name (or, name pattern) of the catalog (database in general) in which the table (that contains the columns of which you need to retrieve the description about) exists. pass "" to get the description of the.....

Java DatabaseMetaData getJDBCMinorVersion() method with example

Answered 3h 40m ago, 0 Views

The getJDBCMinorVersion() method of the DatabaseMetaData interface returns the minor version of the JDBC driver in integer format. To get the major version of the JDBC driver − 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 .....

Java DatabaseMetaData getDriverName() method with example

Answered 3h 49m ago, 0 Views

The getDriverName() method of the DatabaseMetaData interface returns the name of the JDBC driver used. To get the name of the JDBC driver used to connect with the 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.....

Java DatabaseMetaData getDriverMinorVersion() method with example

Answered 3h 51m ago, 0 Views

The getDriverMinorVersion() method of the DatabaseMetaData interface returns the minor version of the JDBC driver used. To get the minor version of the JDBC driver used to connect with the 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 underl.....

1 2 3 4 5 6 7 ... 17 Next
loader
Advertisements
Contribution

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.