Javatpoint Logo
Javatpoint Logo

Java SQL Date setMinutes() Method

The setMinutes(int i) method of Java Date class sets the value of minute by overwriting the value of Minute represented by this date. This method should not be used because SQL date values do not have the time component and this method is deprecated too. This method overrides setMinutes in class Date.

Syntax

Parameters

i = the minute value

Throws

It sets the value of minute.

Exception

IllegalArgumentException is thrown if this method is invoked.

Example

Test it Now

Output:

!! this output is shown by using java.util.Date as an alternate to deprecated method java.sql.Date 
Current time in Minutes = 21
!! this output is shown by using java.sql.Date and proves why this method is deprecated and we can't access time components in java.sql.Date class. 
Exception in thread "main" java.lang.IllegalArgumentException
	at java.sql/java.sql.Date.setMinutes(Unknown Source)
	at date.JavaDateExample1.main(JavaDateExample1.java:24)

Next TopicJava SQL Date





Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA