Rishi Raj has Published 131 Articles

Java sql.Timestamp toString() method with example

Rishi Raj

Rishi Raj

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

4K+ Views

The toString() method of the java.sql.Timestamp class returns the JDBC escape format of the time stamp of the current Timestamp object as String variable.i.e. using this method you can convert a Timestamp object to a String.//Retrieving the Time object Timestamp timestampObj = rs.getTimestamp("DispatchTimeStamp"); //Converting the Time object to String format ... Read More

Java sql.Timestamp valueOf() method with example

Rishi Raj

Rishi Raj

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

809 Views

The valueOf() method of the java.sql.Timestamp class accepts a String value representing a time stamp in JDBC escape format and converts the given String value into Timestamp object.Timestamp timeStamp = Time.valueOf("timeStamp_string");ExampleLet us create a table with name dispatches_data in MySQL database using CREATE statement as shown below:CREATE TABLE dispatches_data(    ProductName VARCHAR(255),   ... Read More

Java sql.Date toString() method with example?

Rishi Raj

Rishi Raj

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

4K+ Views

The toString() method of the java.sql.Date class returns the JDBC escape format of the time of the current Date object as String variable.i.e. using this method, you can convert a Date object to a String.//Retrieving the Date object Date dateObj = rs.getDate("DispatchDate"); //Converting the Date object to String format String ... Read More

Java DatabaseMetaData getDriverMajorVersion() method with example

Rishi Raj

Rishi Raj

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

122 Views

The getDriverMajorVersion() method of the DatabaseMetaData interface returns the major version of the JDBC driver used.To get the major 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 ... Read More

Java DatabaseMetaData getCatalogs() method with example

Rishi Raj

Rishi Raj

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

491 Views

In general a catalog is a directory which holds information about data sets, file or, a database. Whereas in a database catalog holds the list of all the databases, base tables, views (virtual tables), synonyms, value ranges, indexes, users, and user groups.The getCatalogs() method of the DatabaseMetaData interface returns the ... Read More

Java DatabaseMetaData getDatabaseMinorVersion() method with example

Rishi Raj

Rishi Raj

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

68 Views

The getDatabaseMinorVersion() method of the DatabaseMetaData interface returns the minor version of the underlying database in integer format.To get the list of minor version of 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 ... Read More

Java DatabaseMetaData getDriverVersion() method with example

Rishi Raj

Rishi Raj

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

180 Views

The getDriverVersion() method of the DatabaseMetaData interface returns the version of the JDBC driver used.To get the 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 ... Read More

Java DatabaseMetaData getProcedureColumns() method with example

Rishi Raj

Rishi Raj

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

330 Views

This method retrieves the description of the procedure parameter and result columns of a database/catalog. It accepts 4 parameters −catalog - A string parameter representing the name of the catalog (database in general) in which the procedure exists, pass "" to get the description of the primary key columns in ... Read More

Java ResultSet previous() method with example

Rishi Raj

Rishi Raj

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

Override the toString() method in a Java Class

Rishi Raj

Rishi Raj

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

4K+ Views

A string representation of an object can be obtained using the toString() method in Java. This method is overridden so that the object values can be returned.A program that demonstrates this is given as follows:Example Live Democlass Student {    private int rno;    private String name;    public Student(int r, ... Read More

Advertisements