Java JDBC CRUD Tutorial (SQL Insert, Select, Update and Delete Examples)

  Рет қаралды 100,521

Code Java

Code Java

Күн бұрын

Пікірлер: 111
@khalidhossain3850
@khalidhossain3850 4 жыл бұрын
you are the most understandable teacher for java jdbc. When i saw your vedio , I understand it first time ...... you are best teacher for JDBC.
@CodeJava
@CodeJava 4 жыл бұрын
Thanks and welcome! Come to watch my videos more often. Cheers!
@ericmeric9879
@ericmeric9879 2 жыл бұрын
Hello, I have tried your video up until parameters data creation and it worked. Thank you so much. Tomorrow I will continue the rest of your video. Thank you so much.
@CodeJava
@CodeJava 2 жыл бұрын
Glad it helped
@aibeknazaraliev7000
@aibeknazaraliev7000 Жыл бұрын
this video saved me a lot of time, thank you sooo much. Everything was so clear. I cant remember when i was doing everything without errors and with the first try, but today is the day
@CodeJava
@CodeJava Жыл бұрын
Glad it helped!
@anushasaruka7320
@anushasaruka7320 3 жыл бұрын
Thank you, a very good tutorial with no additional crap and to-the-point content.
@CodeJava
@CodeJava 3 жыл бұрын
Glad it was helpful!
@maximmakai9327
@maximmakai9327 3 жыл бұрын
sorry to be so off topic but does any of you know a tool to get back into an Instagram account..? I was dumb lost the login password. I love any assistance you can offer me!
@spencerwinston43
@spencerwinston43 3 жыл бұрын
@Maxim Makai instablaster ;)
@maximmakai9327
@maximmakai9327 3 жыл бұрын
@Spencer Winston i really appreciate your reply. I found the site thru google and I'm trying it out atm. I see it takes a while so I will get back to you later with my results.
@maximmakai9327
@maximmakai9327 3 жыл бұрын
@Spencer Winston it worked and I actually got access to my account again. I'm so happy! Thanks so much, you saved my account :D
@princeprijwal8350
@princeprijwal8350 3 жыл бұрын
Coding is very straight to the point. Loved it and keep it up
@CodeJava
@CodeJava 3 жыл бұрын
Glad you loved it. Thanks for watching :)
@honchan83
@honchan83 3 жыл бұрын
Thank you. you explain better then my professor
@CodeJava
@CodeJava 3 жыл бұрын
Wow, thanks!
@ryanconway2371
@ryanconway2371 4 жыл бұрын
Very Straight forward and helpful tutorial. Thank you!
@CodeJava
@CodeJava 4 жыл бұрын
You're welcome. Glad it helped.
@LuizOtavio-zj9br
@LuizOtavio-zj9br 4 жыл бұрын
TIME ZONE ERROR (SOLVED) In my case there was an error with my time zone. To solve it, I went back to Mysql, right-clicked on our "users" table, clicked on "select rows" and typed the command: SET GLOBAL time_zone = '+4: 00'; Then I went back to the eclipse and it worked!
@CodeJava
@CodeJava 4 жыл бұрын
Thanks for your contribution.
@drewity
@drewity 11 ай бұрын
Such a helpful tutorial. Many thanks!
@CodeJava
@CodeJava 11 ай бұрын
Glad it was helpful!
@ShubhamKumar-dp6ip
@ShubhamKumar-dp6ip 3 жыл бұрын
Awesome explanation . Completely understood
@CodeJava
@CodeJava 3 жыл бұрын
Glad it helped
@alishasharma880
@alishasharma880 3 жыл бұрын
Hey, so most of the tutorials have website connect to database via php. I am creating a bookstore html website, can i connect it like your tutorial to be able to perform CRUD operations or do i need PHP?
@CodeJava
@CodeJava 3 жыл бұрын
yes, you can connect using Java. In a webapp, you need to create Java servlet which uses JDBC to work with database. Check out this tutorial: www.codejava.net/coding/jsp-servlet-jdbc-mysql-create-read-update-delete-crud-example
@rj3937
@rj3937 4 жыл бұрын
This is very helpful. Thanks. Keep the good work
@CodeJava
@CodeJava 4 жыл бұрын
Glad it was helpful!
2 жыл бұрын
thanks for the clear explanation
@CodeJava
@CodeJava 2 жыл бұрын
You are welcome!
@mixxy4032
@mixxy4032 2 жыл бұрын
I am a begginer and I have a Java prog to use CRUD with MySQL but I don't know how to use SQL will I be able to understand this video and use CRUD as shown in the video to be used in my Java program
@CodeJava
@CodeJava 2 жыл бұрын
you mean you don't know writing SQL statements?
@mixxy4032
@mixxy4032 2 жыл бұрын
@@CodeJava yes
@patpat__gaming2099
@patpat__gaming2099 3 жыл бұрын
thanks for vid..really helped me in my project👍
@CodeJava
@CodeJava 3 жыл бұрын
Glad it helped!
@aishwaryakamble4604
@aishwaryakamble4604 Жыл бұрын
Thank you very much... For such a wonderful tutorial 😊✨🙏
@CodeJava
@CodeJava Жыл бұрын
you're welcome. Glad it helped.
@huuquocdattran2877
@huuquocdattran2877 3 жыл бұрын
Hello Mr Nam Ha Minh . I 've bg in this exercise. when i add a querry like INSERT INTO duplicate value in sql, in sql table it still shows sql value. How to check the value is already in the sql table and How to resolve this bug .
@CodeJava
@CodeJava 3 жыл бұрын
you can set unique = true for the column that should not have duplicate values. Then it will throw an exception if you're trying to insert the same value. Then you catch this exception and handle it properly. Make sense?
@huuquocdattran2877
@huuquocdattran2877 3 жыл бұрын
@@CodeJava yes , we'll resolve in Database and I think it's safety .
@dharan9203
@dharan9203 3 жыл бұрын
Can u create a new database in JDBC by using Oracle database ? it's possible?
@CodeJava
@CodeJava 3 жыл бұрын
I think no. You must use Oracle tool to create the database.
@carlosmorales8039
@carlosmorales8039 3 жыл бұрын
Yes it's possible
@eltirad0
@eltirad0 3 жыл бұрын
Do you consider a good practice in the Update to send all the fields, including those that were not changed in the form? I've always had this doubt, or send to update individually only those were changed in the form
@CodeJava
@CodeJava 3 жыл бұрын
I prefer updating all the fields even some are not changed. If you want to update only fields that have changed, then you will have to code some logic to check values are changed or not, which could increase the complexity of the code unnecessarily (think about the logic to detect changes of a group of 3 checkboxes, for example).
@vijaykumar-wu9jc
@vijaykumar-wu9jc 4 жыл бұрын
For recording voice which one u use , normal head phones ?
@CodeJava
@CodeJava 4 жыл бұрын
I'm using a basic headphone. Nothing special.
@vijaykumar-wu9jc
@vijaykumar-wu9jc 4 жыл бұрын
Am using normal headphones but voice is not getting recorded
@stellagabriella9085
@stellagabriella9085 3 жыл бұрын
Awesome channel Keep posting!!
@CodeJava
@CodeJava 3 жыл бұрын
Thank you, I will
@rehnumafirdos8930
@rehnumafirdos8930 2 жыл бұрын
very helpful tutorial.. thank you so much !!
@CodeJava
@CodeJava 2 жыл бұрын
You're welcome!
@sarvajith7915
@sarvajith7915 3 жыл бұрын
Thank u very much it was really useful
@CodeJava
@CodeJava 3 жыл бұрын
Glad it helped
@thomashughes8550
@thomashughes8550 4 жыл бұрын
Thank you! This really helped.
@CodeJava
@CodeJava 4 жыл бұрын
I'm so glad! Subscribe to this channel.
@amansheikh1801
@amansheikh1801 3 жыл бұрын
Thnak you sir, you are very helpful.
@CodeJava
@CodeJava 3 жыл бұрын
Glad it helped
@michaelaalquino7878
@michaelaalquino7878 4 жыл бұрын
Does this work on xampp too? I don't have workbench lol
@CodeJava
@CodeJava 4 жыл бұрын
Yes, of course. As long as you have the proper JDBC driver for Xampp (MySQL Connector Java might work).
@deepikabhogi6194
@deepikabhogi6194 3 жыл бұрын
Can u perform all the three SQL query operations in a single code.without changing it each time
@CodeJava
@CodeJava 3 жыл бұрын
oh, it's impossible to execute all Insert, Select and Update in a single statement.
@alternativeenergyresearch4857
@alternativeenergyresearch4857 4 жыл бұрын
Can you provide Google script code or make video on to connect Google sheet to MySQL
@CodeJava
@CodeJava 4 жыл бұрын
Hmm, let me study first.
@alternativeenergyresearch4857
@alternativeenergyresearch4857 4 жыл бұрын
@@CodeJava thankyou very much I need it happy all the best for your study
@CodeJava
@CodeJava 4 жыл бұрын
@@alternativeenergyresearch4857 thanks.
@akbarshaikh8448
@akbarshaikh8448 4 жыл бұрын
Sir How To Take Value From The User ? In this video you already given Value.
@CodeJava
@CodeJava 4 жыл бұрын
check my answer in this video: kzbin.info/www/bejne/pHuXfqqBa9RoZ5I
@piyasidey2117
@piyasidey2117 2 жыл бұрын
Thank you very much Sir.
@CodeJava
@CodeJava 2 жыл бұрын
Welcome!
@hippolytesama3817
@hippolytesama3817 4 жыл бұрын
Simple and easy thanks a lot
@CodeJava
@CodeJava 4 жыл бұрын
Keep watching
@vijaykumar-wu9jc
@vijaykumar-wu9jc 4 жыл бұрын
u have not loaded the mysql driver class is it ok
@CodeJava
@CodeJava 4 жыл бұрын
No need to explicitly load driver class with new Java version (since 1.6)
@amardeepvijay
@amardeepvijay 2 жыл бұрын
Loved it, thanks a lot
@CodeJava
@CodeJava 2 жыл бұрын
Glad you liked it!
@ammarbadri1150
@ammarbadri1150 2 жыл бұрын
sir how can i solve this error: ';' expected String sql = " insert into Book values(" + book name + ",'" + book id + "'," + page number +")"; ^ Book.java:19: error: not a statement String sql = " insert into Book values(" + book name + ",'" + book id + "'," + page number +")"; ^ error: not a statement String sql = " insert into Book values(" + book name + ",'" + book id + "'," + page number +")"; ^ error String sql = " insert into Book values(" + book name + ",'" + book id + "'," + page number +")";
@CodeJava
@CodeJava 2 жыл бұрын
variable names can't have whitespace. You should write bookName, pageNumber,...
@alternativeenergyresearch4857
@alternativeenergyresearch4857 4 жыл бұрын
Hey iam using wamp server php admi. MySQL finding difficult
@CodeJava
@CodeJava 4 жыл бұрын
I understand, phpmyadmin is super easy to use. With MySQL server you can use MySQL Workbench - a GUI tool that helps manage MySQL database easily.
@rizaltaufiqhidayat3259
@rizaltaufiqhidayat3259 4 жыл бұрын
Thanks sir, this tutor help me
@azorynicodemas609
@azorynicodemas609 5 жыл бұрын
superb tutorial. thanks much
@leonardtoo985
@leonardtoo985 5 жыл бұрын
Nice and helpful tutorial. Thanks
@nasrimarc7050
@nasrimarc7050 3 жыл бұрын
Thank you so much, can you please do the same but with MVC or MVVM if you can do that it's really great
@CodeJava
@CodeJava 3 жыл бұрын
I'll try!
@nasrimarc7050
@nasrimarc7050 3 жыл бұрын
@@CodeJava thank you so much
@swathisivakumar6394
@swathisivakumar6394 2 жыл бұрын
Where can i found password pls help me
@CodeJava
@CodeJava 2 жыл бұрын
Do you mean MySQL root password? It's the one you set when MySQL server is installed.
@swathisivakumar6394
@swathisivakumar6394 2 жыл бұрын
I forget my password 😕
@xanhbongcai7287
@xanhbongcai7287 2 жыл бұрын
hay qúa thầy ơi
@CodeJava
@CodeJava 2 жыл бұрын
cảm ơn em.
@fasihakausar9121
@fasihakausar9121 3 жыл бұрын
Thank you so much
@CodeJava
@CodeJava 3 жыл бұрын
You're most welcome
@veerasakthivela1966
@veerasakthivela1966 2 жыл бұрын
localHost:3306???
@CodeJava
@CodeJava 2 жыл бұрын
it is hostname and port number of MySQL database server
@veerasakthivela1966
@veerasakthivela1966 2 жыл бұрын
@@CodeJava thanks 😊
@vuthien9342
@vuthien9342 3 жыл бұрын
Người Việt Nam chắc luôn :v
@CodeJava
@CodeJava 3 жыл бұрын
chính xác rùi đó.
@vuthien9342
@vuthien9342 3 жыл бұрын
@@CodeJava e đang học java để làm backend web thì vô tình gặp a...cảm ơn a vì những video hữu ích
@CodeJava
@CodeJava 3 жыл бұрын
@@vuthien9342 xem kênh anh thường xuyên hơn nhé (gần 260 video rồi).
@levantai9918
@levantai9918 3 жыл бұрын
good
@CodeJava
@CodeJava 3 жыл бұрын
Thanks for watching.
@AdamThao92
@AdamThao92 4 жыл бұрын
Could've used some work
@CodeJava
@CodeJava 4 жыл бұрын
what do you mean?
@datnguyen69468
@datnguyen69468 3 жыл бұрын
please VietNamese :))
@progxmps6708
@progxmps6708 2 жыл бұрын
Nice video
@CodeJava
@CodeJava 2 жыл бұрын
Glad you enjoyed it
Java Connect to Oracle database Made Easy
44:39
Code Java
Рет қаралды 78 М.
Java Database Connectivity | JDBC
20:34
Telusko
Рет қаралды 322 М.
КОГДА К БАТЕ ПРИШЕЛ ДРУГ😂#shorts
00:59
BATEK_OFFICIAL
Рет қаралды 7 МЛН
The Singing Challenge #joker #Harriet Quinn
00:35
佐助与鸣人
Рет қаралды 32 МЛН
Motorbike Smashes Into Porsche! 😱
00:15
Caters Clips
Рет қаралды 23 МЛН
Java Database: CRUD Operations - Insert, Select, Delete, Update
26:09
Learn SQL Basics in Just 15 Minutes!
16:57
Kenji Explains
Рет қаралды 170 М.
Что такое SQL?
7:11
Merion Academy
Рет қаралды 345 М.
JSP Servlet JDBC MySQL Create Read Update Delete (CRUD) Example
47:06
Inserting, Updating and Deleting Data Using JDBC in Java
22:31
Easy Learning
Рет қаралды 1,1 М.
7 Database Design Mistakes to Avoid (With Solutions)
11:29
Database Star
Рет қаралды 84 М.
КОГДА К БАТЕ ПРИШЕЛ ДРУГ😂#shorts
00:59
BATEK_OFFICIAL
Рет қаралды 7 МЛН