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.
@CodeJava4 жыл бұрын
Thanks and welcome! Come to watch my videos more often. Cheers!
@ericmeric98792 жыл бұрын
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.
@CodeJava2 жыл бұрын
Glad it helped
@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 Жыл бұрын
Glad it helped!
@anushasaruka73203 жыл бұрын
Thank you, a very good tutorial with no additional crap and to-the-point content.
@CodeJava3 жыл бұрын
Glad it was helpful!
@maximmakai93273 жыл бұрын
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!
@spencerwinston433 жыл бұрын
@Maxim Makai instablaster ;)
@maximmakai93273 жыл бұрын
@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.
@maximmakai93273 жыл бұрын
@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
@princeprijwal83503 жыл бұрын
Coding is very straight to the point. Loved it and keep it up
@CodeJava3 жыл бұрын
Glad you loved it. Thanks for watching :)
@honchan833 жыл бұрын
Thank you. you explain better then my professor
@CodeJava3 жыл бұрын
Wow, thanks!
@ryanconway23714 жыл бұрын
Very Straight forward and helpful tutorial. Thank you!
@CodeJava4 жыл бұрын
You're welcome. Glad it helped.
@LuizOtavio-zj9br4 жыл бұрын
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!
@CodeJava4 жыл бұрын
Thanks for your contribution.
@drewity11 ай бұрын
Such a helpful tutorial. Many thanks!
@CodeJava11 ай бұрын
Glad it was helpful!
@ShubhamKumar-dp6ip3 жыл бұрын
Awesome explanation . Completely understood
@CodeJava3 жыл бұрын
Glad it helped
@alishasharma8803 жыл бұрын
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?
@CodeJava3 жыл бұрын
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
@rj39374 жыл бұрын
This is very helpful. Thanks. Keep the good work
@CodeJava4 жыл бұрын
Glad it was helpful!
2 жыл бұрын
thanks for the clear explanation
@CodeJava2 жыл бұрын
You are welcome!
@mixxy40322 жыл бұрын
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
@CodeJava2 жыл бұрын
you mean you don't know writing SQL statements?
@mixxy40322 жыл бұрын
@@CodeJava yes
@patpat__gaming20993 жыл бұрын
thanks for vid..really helped me in my project👍
@CodeJava3 жыл бұрын
Glad it helped!
@aishwaryakamble4604 Жыл бұрын
Thank you very much... For such a wonderful tutorial 😊✨🙏
@CodeJava Жыл бұрын
you're welcome. Glad it helped.
@huuquocdattran28773 жыл бұрын
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 .
@CodeJava3 жыл бұрын
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?
@huuquocdattran28773 жыл бұрын
@@CodeJava yes , we'll resolve in Database and I think it's safety .
@dharan92033 жыл бұрын
Can u create a new database in JDBC by using Oracle database ? it's possible?
@CodeJava3 жыл бұрын
I think no. You must use Oracle tool to create the database.
@carlosmorales80393 жыл бұрын
Yes it's possible
@eltirad03 жыл бұрын
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
@CodeJava3 жыл бұрын
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-wu9jc4 жыл бұрын
For recording voice which one u use , normal head phones ?
@CodeJava4 жыл бұрын
I'm using a basic headphone. Nothing special.
@vijaykumar-wu9jc4 жыл бұрын
Am using normal headphones but voice is not getting recorded
@stellagabriella90853 жыл бұрын
Awesome channel Keep posting!!
@CodeJava3 жыл бұрын
Thank you, I will
@rehnumafirdos89302 жыл бұрын
very helpful tutorial.. thank you so much !!
@CodeJava2 жыл бұрын
You're welcome!
@sarvajith79153 жыл бұрын
Thank u very much it was really useful
@CodeJava3 жыл бұрын
Glad it helped
@thomashughes85504 жыл бұрын
Thank you! This really helped.
@CodeJava4 жыл бұрын
I'm so glad! Subscribe to this channel.
@amansheikh18013 жыл бұрын
Thnak you sir, you are very helpful.
@CodeJava3 жыл бұрын
Glad it helped
@michaelaalquino78784 жыл бұрын
Does this work on xampp too? I don't have workbench lol
@CodeJava4 жыл бұрын
Yes, of course. As long as you have the proper JDBC driver for Xampp (MySQL Connector Java might work).
@deepikabhogi61943 жыл бұрын
Can u perform all the three SQL query operations in a single code.without changing it each time
@CodeJava3 жыл бұрын
oh, it's impossible to execute all Insert, Select and Update in a single statement.
@alternativeenergyresearch48574 жыл бұрын
Can you provide Google script code or make video on to connect Google sheet to MySQL
@CodeJava4 жыл бұрын
Hmm, let me study first.
@alternativeenergyresearch48574 жыл бұрын
@@CodeJava thankyou very much I need it happy all the best for your study
@CodeJava4 жыл бұрын
@@alternativeenergyresearch4857 thanks.
@akbarshaikh84484 жыл бұрын
Sir How To Take Value From The User ? In this video you already given Value.
@CodeJava4 жыл бұрын
check my answer in this video: kzbin.info/www/bejne/pHuXfqqBa9RoZ5I
@piyasidey21172 жыл бұрын
Thank you very much Sir.
@CodeJava2 жыл бұрын
Welcome!
@hippolytesama38174 жыл бұрын
Simple and easy thanks a lot
@CodeJava4 жыл бұрын
Keep watching
@vijaykumar-wu9jc4 жыл бұрын
u have not loaded the mysql driver class is it ok
@CodeJava4 жыл бұрын
No need to explicitly load driver class with new Java version (since 1.6)
@amardeepvijay2 жыл бұрын
Loved it, thanks a lot
@CodeJava2 жыл бұрын
Glad you liked it!
@ammarbadri11502 жыл бұрын
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 +")";
@CodeJava2 жыл бұрын
variable names can't have whitespace. You should write bookName, pageNumber,...
@alternativeenergyresearch48574 жыл бұрын
Hey iam using wamp server php admi. MySQL finding difficult
@CodeJava4 жыл бұрын
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.
@rizaltaufiqhidayat32594 жыл бұрын
Thanks sir, this tutor help me
@azorynicodemas6095 жыл бұрын
superb tutorial. thanks much
@leonardtoo9855 жыл бұрын
Nice and helpful tutorial. Thanks
@nasrimarc70503 жыл бұрын
Thank you so much, can you please do the same but with MVC or MVVM if you can do that it's really great
@CodeJava3 жыл бұрын
I'll try!
@nasrimarc70503 жыл бұрын
@@CodeJava thank you so much
@swathisivakumar63942 жыл бұрын
Where can i found password pls help me
@CodeJava2 жыл бұрын
Do you mean MySQL root password? It's the one you set when MySQL server is installed.
@swathisivakumar63942 жыл бұрын
I forget my password 😕
@xanhbongcai72872 жыл бұрын
hay qúa thầy ơi
@CodeJava2 жыл бұрын
cảm ơn em.
@fasihakausar91213 жыл бұрын
Thank you so much
@CodeJava3 жыл бұрын
You're most welcome
@veerasakthivela19662 жыл бұрын
localHost:3306???
@CodeJava2 жыл бұрын
it is hostname and port number of MySQL database server
@veerasakthivela19662 жыл бұрын
@@CodeJava thanks 😊
@vuthien93423 жыл бұрын
Người Việt Nam chắc luôn :v
@CodeJava3 жыл бұрын
chính xác rùi đó.
@vuthien93423 жыл бұрын
@@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
@CodeJava3 жыл бұрын
@@vuthien9342 xem kênh anh thường xuyên hơn nhé (gần 260 video rồi).