Тёмный

HOW TO INSERT DATE INTO MYSQL DATABASE USING JAVA NETBEANS WITH SOURCE CODE SIMPLE WAY 2023 

Ideas_Promaxs
Подписаться 6
Просмотров 1,5 тыс.
50% 1

MOST EASY WAY 2023
You can insert date values in SQL using the date datatype, The java.sql.Date class maps to the SQL DATE type.
The PreparedStatement interface provides a method named setDate(). Using this you can insert date into a table. This method accepts two parameters −
An integer representing the parameter index of the place holder (?) to which we need to set date value.
a Date object representing the date value to be passed. The constructor of java.sql.Date class accepts a variable of long type representing the number of milliseconds from the epoch (standard base time I.e. January 1, 1970, 00:00:00 GMT).
+----------+--------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+----------+--------------+------+-----+---------+-------+
| Name | varchar(255) | YES | | NULL | |
| DOB | date | YES | | NULL | |
| Location | varchar(255) | YES | | NULL | |
+----------+--------------+------+-----+---------+-------+
Following JDBC program inserts records in to this table −
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.Statement;
import java.sql.Date;
public class InsertingDate {
public static void main(String args[])throws Exception {
//Getting the connection
String mysqlUrl = "jdbc:mysql://localhost/sampleDB";
Connection con = DriverManager.getConnection(mysqlUrl, "root", "password");
System.out.println("Connection established......");
//Inserting values to a table
String query = "INSERT INTO Emp(Name, DOB, Location) VALUES (?, ?, ?)";
PreparedStatement pstmt = con.prepareStatement(query);
pstmt.setString(1, "Amit"); pstmt.setDate(2, new Date(622790105000L));
pstmt.setString(3, "Hyderabad");
pstmt.execute();
pstmt.setString(1, "Sumith"); pstmt.setDate(2, new Date(620611200000L));
pstmt.setString(3, "Vishakhapatnam");
pstmt.execute();
pstmt.setString(1, "Sudha");
pstmt.setDate(2, new Date(336614400000L));
pstmt.setString(3, "Vijayawada");
pstmt.execute();
System.out.println("Records inserted......");
}
}
#mysql #javadevelopers #love #programmerslife #tutorial #javatutorial #tutorials #softwaredeveloper #sublimetext #programmerlife #lovejava #javasparrow #javafast #visualstudio #programacion #lovedeveloping #programadores #programador #apachenetbeans #fullstackdeveloper #webdeveloper #javaprogrammers #android #rubyonrails #jetbrains #kotlin #swing #github #frontenddeveloper #database
#netbeans #java #programming #eclipse #coding #javascript #php #html #python #javadeveloper #css #javaprogramming #intellij #code #ide #javafx #programmer #vscode #developer #webdevelopment #javacode #pycharm #laravel #codeigniter #programmers #computerscience #javajavajava #jdk #sqlserver #bootstrap

Опубликовано:

 

27 фев 2023

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 8   
@sagarsunil8540
@sagarsunil8540 Год назад
Helped me a lot brother thanks
@Ideas_promaxs
@Ideas_promaxs Год назад
No Problem sir
@itzsanal4763
@itzsanal4763 Год назад
Thankyou sir it was easy to understand
@user-up8hk7rb4b
@user-up8hk7rb4b 7 месяцев назад
As an IT student it is Legit, thanks for the tutorial
@amoralaantigua7679
@amoralaantigua7679 9 месяцев назад
Thank you so much my friend, i was having troubles trying to use date in mysql...
@zaryabshaukat
@zaryabshaukat Год назад
Wowww bro , so easy thanks
@Ideas_promaxs
@Ideas_promaxs Год назад
Thanks
@nealbarrett2774
@nealbarrett2774 Год назад
😆 "Promo sm"
Далее
Learn JSON in 10 Minutes
12:00
Просмотров 3,1 млн
skibidi toilet 76 (full episode)
08:11
Просмотров 8 млн
His reaction 😳 (via @kaitlyn.b0506/TT) #shorts
00:10
World Record Tunnel Glide 🪂
00:19
Просмотров 17 млн
Learn Database Normalization - 1NF, 2NF, 3NF, 4NF, 5NF
28:34
Save HTML Form Data to a MySQL Database using PHP
24:38
Brutally honest advice for new .NET Web Developers
7:19
How to Use JDateChooser or JCalendar in Java
17:54
Просмотров 124 тыс.
Java in 100 Seconds
2:25
Просмотров 1,2 млн
Database Indexing for Dumb Developers
15:59
Просмотров 47 тыс.
Learn SQL In 60 Minutes
56:24
Просмотров 2,1 млн
skibidi toilet 76 (full episode)
08:11
Просмотров 8 млн