I really love this tutorial. i was recently given a project from my teacher to create a students management system for him and this tutorial helped me a lot. thank you very much and keep it up. thumbs up to you Awais Mirza.
To anyone doing this tutorial now and are struggling with the same error (credentials correct but when you hit Login, nothing happens), make sure you've got the file paths correct in the adminLogin and studentLogin methods in the LoginController class. While "/Admin/Admin.fxml" worked for Awais, I realised that I needed to include the full package name for my project and then it worked for me. For example, "/com/company/admin/Admin.fxml" was what made it work. Thanks for the cool tutorial. Lots of stuff to come back to and do a deep dive on!
Sir...I was able to follow your tutorials when I was in India.....but now am in Ethiopia where we have a very slow internet connection...I can not watch your online tutorials....but I have some videos I downloaded some months ago and am watching it again and again....Thank you so much Sir....it is very helpful...
+Henok Bezawork bro just to mention that if you download my videos and then watch them then it is not good for my channel and for my hardwork. Because i wont get anything for my hardwork so please if you or anyone want more video then please dont download and watch. Because if i make free tutorials and put alot of time into it anf if i dont get any benifit then i will stop making videos
Well, after hours spent because I couldn't get pass the "Press Login button, but nothing happens, not even an exception thrown" at 1:19:00 , reading all the solutions in the comments and searching on the internet, without success, I've thought to use MySQL instead. And it works now. Ow, and pretty good tutorial, +Awais Mirza !
For those of you who cannot get passed the step of logging in to the student/admin windows, here's where my hangup was: I had created a SQLite database prior to watching this video and I saved it in a different directory. For my project, I didn't create a fresh .sqlite like Awais did in the video. I was exporting my original database to a new .sqlite file using SQLite Studio. This was the problem of why I couldn't log in (1:20:00) to the database. SQLite Studio apparently encrypts the database if you export it into a new database; *so that means that your program can't access its contents*. What i did, was copy my original database that I created, and moved it into the project/src directory. This was my hang up. Awais isn't very clear on how he copied his database to the project directory at the beginning of the video, so I kinda glazed over this step and didn't do it with my database. DO NOT SKIP THIS STEP. Good luck guys.
To any who are having problems: - If you are using Java 11+, know that JavaFX is no longer bundled with Java itself. You will have to download it separately and add it to Modules (or Libraries?) under Project Structure similar to how you add the JDBC driver at 54:40. - You will also need to include a module-info.java file in your src folder. Here is mine pastebin.com/vaPfb1k7 . - If you have problems around 1:20:00 make sure to add .toLowerCase() after .toString() at line 50 of the video. This is because the values of the combobox have their first letter capitalized (Admin & Student) where as the values you have in your database (the division values admin & student) are not capitalized. If you don't make it all lowercase the isLogin() function will return false. - Also at 1:20:00 make sure that your Admin.fxml and studentFXML.fxml files (or whatever you named them) are not empty. Open them in scenebuilder and add a single AnchorPane container and save. This should help with bringing up the student and admin dashboards. - Furthermore, I don't know if it matters but I put my school.sqlite database file in the src folder and not in the any of the packages.
@Jason Wong @PhantomGlitch This is my project structure regarding JDBC and JavaFX, don't know if it will help you without knowing what kind of error you have. i.imgur.com/TaXYdgM.png And as further information, I myself am stuck at the last step, the JAR file creation. I can create it but it doesn't work, can't find the loginapp.loginapp method or something. I still need to investigate that.
kudos for audio+video tutorial. Very hard to find a great tutorial like this one. I made several applications like this and new on java / eclipse / netbeans (and of course intellij) world and was looking for this. Thank you!
if anyone has a NullPointerException error around 1:20:00 that's because the database server file needs to be copied inside the project folder, not in the source one. If i knew this precious hours would ve been saved :D
Solution for anyone struggling with an error while logging at 1:19:00: javafx.fxml.LoadException: unknown path [...] Caused by: javax.xml.stream.XMLStreamException: ParseError at [row,col]:[1,1] Message: Premature end of file. It's because you have nothing yet in your Admin.fxml and studentFXML.fxml files. Simply add ex. an anchor pane in Scene Builder to these files, and you're out of the error. Despite it might be the obvious fix, I spent too much time to work out what's wrong. Hope it helps someone.
this is awesome ....can you make and upload a video for a student information system project in java with eclipse with postgresql database which will find out a best student of the year...?
Hi guys great video... I just have one problem, at 1:19 I can't login to admin or student. I can't see any problems or diferences and I triple checked full video and everything is same. Any help?
hey sir! great tutorial. wanted just to know whether this database can be exported and used in other computers. it's been a pretty long time i've been looking for a way to export my java application with the database inside. can you help please!!!
+Mohamed Gudow you should be able make hotel booking system. If you keep watching tutorial and wont create something your own then it will take you long time to learn java
I've read some of the comments and I ran into a similar problem. My code had no errors and was running well, but the Admin and Student dash board wouldn't open when I pressed log in. Long story short, it turns out Eclipse was creating/updating a new sqlite file outside of the src folder. So all I did was replace that sqlite file with the sqlite file that I created. Then everything started to work again. However, I still don't know why it was creating a separate sqlite file.
wait how did you do it, I am using Intellij as well. I tried replacing my sqlite file but it did not work, plus there are no errors appearing. Can you please help me!!
So nothing is happening when you hit login? (It doesn’t indicate wrong credentials, or change screens at all?) if replacing the SQLite file outside of the src file didn’t work, I would double check your button/all the code used with button
I'm using your materials to learn java. actually I'm new to java and programming. any advise or recommendations on what to do to become expert in java programming
JAVA is Huge so Making sure when you Learn the Basics then Start Creating Apps with that instead of just Learning Start making Apps. and If you need help then Google. Just Choose a Small Project and Finish then go to the Lesson of Java
+Thato Dikobo well it depends its up to the developer in java there are manys to do one paticular thing so it really depends on they way you program the app
I get an error running the app at 10:10 at javafx.graphics/com.sun.glass.ui.win.WinApplication.lambda$runLoop$3(WinApplication.java:174) ... 1 more Exception running application LoginApp.LoginApp Everything is about the same!
Hi Mr Awais. Thank yu for the tutorial. i was wondring is there a way to export the project to a runnable .jar and keep the sqlite file in the runnable.jar file? so i could use the app in different computers?
Please help me if you are reading this, I completed the login part of school system but when i run this as you did, It didn't show any message on the label like " Connected to database" at 57:30 but in the sqlite Studio it is showing Connected to database. How to solve this problem....?
I have a problem at 1:14:30. I can't run my program. Error:(56, 133) java: incompatible types: java.lang.String cannot be converted to loginapp.option How can I fix that?
Heyy... First of all very nice tutorial...your explanation is very good and to the point. I really like how you show everything and make it easy to follow. Thanks for your work. Now I am facing some problem in the login phase...did exactly the same as yours, but I am not jumping to neither admin page nor student page, moreover I am not getting anything in the login status label. Don't know where I am going wrong. Please reply ASAP.
I like Netbeans but Intellij is Somewhat better in some cases when you are learning because it provide better suggestion well Any IDE will work but make sure you know how to work with sqlite with Netbeanse because there are different ways to Build jar and Add JDBC driver for Sqlite. Let me know if you have any issues
WHY ERROR , SIR Awais? 1:18:40 Error:(55, 24) java: strings in switch are not supported in -source 1.6 (use -source 7 or higher to enable strings in switch)
Sir, I followed till 1:20:00 everything is fine. There is no error but don't know why when I click on login button the admin or student dashboard doesn't pops up.
I found the problem! when you go to run it, your IDE is trying to create a another sqlite file, outside of source file, just copy the sqlite file you're using under students, and paste it over the one outside of SRC
Can I make tables point to other tables? Imagine I have like 2000 maps. Every one has an ID. Now for every map there exist a table/array/list with Routes. Every Route has an ID or index and shall point to a table/array/list with all its coordinates - how would I do that? Or can I make some Kind of Array or List as a column data type? Please help I am very new to sql
If you encounter with problem at 1:20 during this video - no dashboards appearance. You need just go to LoginModel and set code to rs = ps.executeQuery(); INSTEAD OF ps.executeQuery(). see on 41:56. And gonna be working!
error in javafx classes in sqlite database connection class not found exception and runing of the parameters and object of loginModwl shows an error in the LoginController class
i have the project that contain personal information such as email address and password and other credentials that i don't wanna be seen by reverse engineer when they want to decompile my jar. i tried to use proguard but i can't make it so what should i do to make my app secure?
Steven R 1 rok temu I found the problem! when you go to run it, your IDE is trying to create a another sqlite file, outside of source file, just copy the sqlite file you're using under students, and paste it over the one outside of SRC
Please can You provide me the link of another part of this video tutorials. i unable to find it. Cause some of the part i saw in missing like CSS part and student package part in this video is missing... please do quick i need to watch the 2nd part this video.
Does anyone know what to do when I have nullPointerException at 1:18:00 of the video when I press Login Button Exception tells me Error is caused by this line if(this.loginModel.isLogin(this.username.getText(), this.password.getText(), ((option)this.combobox.getValue()).toString())){ but I don't know why
hello please I need your help.mmi followed the video and have done everything but when I run the program ..after inputting the user details and click on login it gives me errors... java.Lang.NullPointerException
I made this project on Netbeans IDE . How to building this project to get a single executable file.? I tried the clean and build function of Netbeans but on opening the executable file the dashboard does not pop up..... Plz Help.....
Guys, I have been practicing with this tutorial and when I completed it and made the exact same app, (note: the app is working perfectly inside Netbeans and exactly like yours) I tried to make the .jar file and run it. The jar file is exported in "dist" folder of Netbeans projects folders, but when I try to execute it , it is not working as it should.. It is opening the login screen , but not functioning at all.. I am inserting the right or wrong credentials (user + password) but not doing nothing!! (i have copied the db as shown in the last part of the video).. I am working in linux/Ubuntu OS (if this might have anything to do with it..). Anybody else with this problem??
I've gotten up to the point where you tried out the button to see if you could create another stage. I get no response at all. No new windows are created and the label doesn't get updated about the credentials. I tried adding a System.exit(0) and the button is working, only that I get no response for the other code. Completly at a loss here.
+NilleJ i have checked the time in the video you need to explain abit details that if you are getting any exception and make sure that you are conntected to database of it still doesn't work let me know anf source code can be provided upon request
Hey I cant load my form in Scene builder when I have done putting some button and textbox, it says no injected Controller in FXML found, Like that. Anyone I need your help.
I have the same problem as the other guy who commented here, i followed everything but at 1 hr and 20 mins in the video , i run my program and its not doing anything(no errors showing also). Please help, i followed you in SC and also sent a message to you there. Pls help, thanks.
Awais Mirza its actually working now. :-) im so happy! In the dbUtil package -> dbConnection -> i change the file format to .db instead of .sqlite. I want to add logout(return to loginpage) and delete button, do you have source code for that too? I was able to add new tab, now i just need those two buttons and im set :-)
This tutorial made me look like a genius in school 3 years ago, thank you Awais Mirza
I really love this tutorial. i was recently given a project from my teacher to create a students management system for him and this tutorial helped me a lot. thank you very much and keep it up.
thumbs up to you Awais Mirza.
To anyone doing this tutorial now and are struggling with the same error (credentials correct but when you hit Login, nothing happens), make sure you've got the file paths correct in the adminLogin and studentLogin methods in the LoginController class. While "/Admin/Admin.fxml" worked for Awais, I realised that I needed to include the full package name for my project and then it worked for me. For example, "/com/company/admin/Admin.fxml" was what made it work.
Thanks for the cool tutorial. Lots of stuff to come back to and do a deep dive on!
Sir...I was able to follow your tutorials when I was in India.....but now am in Ethiopia where we have a very slow internet connection...I can not watch your online tutorials....but I have some videos I downloaded some months ago and am watching it again and again....Thank you so much Sir....it is very helpful...
+Henok Bezawork bro just to mention that if you download my videos and then watch them then it is not good for my channel and for my hardwork. Because i wont get anything for my hardwork so please if you or anyone want more video then please dont download and watch. Because if i make free tutorials and put alot of time into it anf if i dont get any benifit then i will stop making videos
+Awais Mirza make it offline not available. It will not allow viewer to download ur videos.
your names are quite similar
@@AwaisMirza1 Its not like he dosent want to support you. He had no other choice and appreciate your work.
@@AwaisMirza1 dude... Ur just rude. The guy was going head over heals for ur new video and .. What a shame
Well, after hours spent because I couldn't get pass the "Press Login button, but nothing happens, not even an exception thrown" at 1:19:00 , reading all the solutions in the comments and searching on the internet, without success, I've thought to use MySQL instead. And it works now.
Ow, and pretty good tutorial, +Awais Mirza !
For those of you who cannot get passed the step of logging in to the student/admin windows, here's where my hangup was:
I had created a SQLite database prior to watching this video and I saved it in a different directory. For my project, I didn't create a fresh .sqlite like Awais did in the video. I was exporting my original database to a new .sqlite file using SQLite Studio. This was the problem of why I couldn't log in (1:20:00) to the database. SQLite Studio apparently encrypts the database if you export it into a new database; *so that means that your program can't access its contents*. What i did, was copy my original database that I created, and moved it into the project/src directory. This was my hang up. Awais isn't very clear on how he copied his database to the project directory at the beginning of the video, so I kinda glazed over this step and didn't do it with my database. DO NOT SKIP THIS STEP. Good luck guys.
how do you copy it? where is the default location of the original DB ?
To any who are having problems:
- If you are using Java 11+, know that JavaFX is no longer bundled with Java itself. You will have to download it separately and add it to Modules (or Libraries?) under Project Structure similar to how you add the JDBC driver at 54:40.
- You will also need to include a module-info.java file in your src folder. Here is mine pastebin.com/vaPfb1k7 .
- If you have problems around 1:20:00 make sure to add .toLowerCase() after .toString() at line 50 of the video. This is because the values of the combobox have their first letter capitalized (Admin & Student) where as the values you have in your database (the division values admin & student) are not capitalized. If you don't make it all lowercase the isLogin() function will return false.
- Also at 1:20:00 make sure that your Admin.fxml and studentFXML.fxml files (or whatever you named them) are not empty. Open them in scenebuilder and add a single AnchorPane container and save. This should help with bringing up the student and admin dashboards.
- Furthermore, I don't know if it matters but I put my school.sqlite database file in the src folder and not in the any of the packages.
i have problems with the JDBC driver, even thought i have installed it in my dependencies and lib but the same error still appears. Any suggestions?
@@jasonwong3901 i have the same problem, i checked his project on github and it did not show anything different
@Jason Wong if you find a solution please tell me.
@Jason Wong @PhantomGlitch This is my project structure regarding JDBC and JavaFX, don't know if it will help you without knowing what kind of error you have. i.imgur.com/TaXYdgM.png And as further information, I myself am stuck at the last step, the JAR file creation. I can create it but it doesn't work, can't find the loginapp.loginapp method or something. I still need to investigate that.
@@NoName-hs3ir i feel so stupid, i have not updated java and it is using 1.8
sir i have not finish watching your tutorial i became more happy as you are teaching javafx god bless you
every this is very good you pic all basic concept which require thanks i enjoy a lot
kudos for audio+video tutorial. Very hard to find a great tutorial like this one. I made several applications like this and new on java / eclipse / netbeans (and of course intellij) world and was looking for this. Thank you!
if anyone has a NullPointerException error around 1:20:00 that's because the database server file needs to be copied inside the project folder, not in the source one. If i knew this precious hours would ve been saved :D
Thanks, you are a god among men
finally we got the project thank you love you
Very good introduction to making bigger projects.
Great tutorial. Discovered some new things from this. Hopefully you will add more tutorials on this.
57:56
"THE JEW HUNTER is playing Rainbow Six"
The problem at 1:20:00 could be solved if you go into scene builder and under fx: id there is an On Action. Select Login and it might work
not worked for me !
Thank You :)
Good work it help to beginners like me how to build small desktop application waiting for next tutorials modify and delete student thanks lot
GOOD .I LIKE
Amazing! It worked for me. I can't wait to build on this information. Your instruction is fantastic!!!
Great tutorial awais
The best! Thanks Awais!
Solution for anyone struggling with an error while logging at 1:19:00:
javafx.fxml.LoadException:
unknown path
[...]
Caused by: javax.xml.stream.XMLStreamException: ParseError at [row,col]:[1,1]
Message: Premature end of file.
It's because you have nothing yet in your Admin.fxml and studentFXML.fxml files. Simply add ex. an anchor pane in Scene Builder to these files, and you're out of the error.
Despite it might be the obvious fix, I spent too much time to work out what's wrong. Hope it helps someone.
this is awesome ....can you make and upload a video for a student information system project in java with eclipse with postgresql database which will find out a best student of the year...?
Hi guys great video... I just have one problem, at 1:19 I can't login to admin or student. I can't see any problems or diferences and I triple checked full video and everything is same. Any help?
I subscribed and Liked. Thanks for sharing
Dear Sir,
can you please more videos related to this project as at the end you said i will show you more in next video.
hey sir! great tutorial. wanted just to know whether this database can be exported and used in other computers. it's been a pretty long time i've been looking for a way to export my java application with the database inside. can you help please!!!
having the same issue. did you ever find a way?
Sir I'm following your tutorial, you making best tutorial.. will you make one more like this one, Hotel Booking System?
+Mohamed Gudow you should be able make hotel booking system. If you keep watching tutorial and wont create something your own then it will take you long time to learn java
Thanks I will try
I've read some of the comments and I ran into a similar problem. My code had no errors and was running well, but the Admin and Student dash board wouldn't open when I pressed log in. Long story short, it turns out Eclipse was creating/updating a new sqlite file outside of the src folder. So all I did was replace that sqlite file with the sqlite file that I created. Then everything started to work again. However, I still don't know why it was creating a separate sqlite file.
intellij was doing the same for me!! I spent 2 hours trying to figure this out, thanks!
wait how did you do it, I am using Intellij as well. I tried replacing my sqlite file but it did not work, plus there are no errors appearing. Can you please help me!!
So nothing is happening when you hit login? (It doesn’t indicate wrong credentials, or change screens at all?) if replacing the SQLite file outside of the src file didn’t work, I would double check your button/all the code used with button
yep nothing happens, i double checked the code but it just ends up creating a new sqlite file
But judging by your problem, it’s something to do with SQLite or the button
I'm using your materials to learn java. actually I'm new to java and programming. any advise or recommendations on what to do to become expert in java programming
JAVA is Huge so Making sure when you Learn the Basics then Start Creating Apps with that instead of just Learning Start making Apps. and If you need help then Google. Just Choose a Small Project and Finish then go to the Lesson of Java
OK. Thanks a lot
Good work, thank you very much. What I would like to is, what specific data structure can be used to implement the system if not using the database.
+Thato Dikobo well it depends its up to the developer in java there are manys to do one paticular thing so it really depends on they way you program the app
I get an error running the app at 10:10
at javafx.graphics/com.sun.glass.ui.win.WinApplication.lambda$runLoop$3(WinApplication.java:174)
... 1 more
Exception running application LoginApp.LoginApp
Everything is about the same!
Did you solve it? I got the same error
nope@@louiegroove
Hi Mr Awais. Thank yu for the tutorial. i was wondring is there a way to export the project to a runnable .jar and keep the sqlite file in the runnable.jar file? so i could use the app in different computers?
Please help me if you are reading this, I completed the login part of school system but when i run this as you did, It didn't show any message on the label like " Connected to database" at 57:30 but in the sqlite Studio it is showing Connected to database. How to solve this problem....?
Are you sure you followed the steps
Awais Mirza I followed every step. Is there anything with the path of sqlite and mysql...
Why are you using MySQL connection in db connection when you are using sqLite...
I have a problem at 1:14:30.
I can't run my program.
Error:(56, 133) java: incompatible types: java.lang.String cannot be converted to loginapp.option
How can I fix that?
Heyy...
First of all very nice tutorial...your explanation is very good and to the point. I really like how you show everything and make it easy to follow. Thanks for your work.
Now I am facing some problem in the login phase...did exactly the same as yours, but I am not jumping to neither admin page nor student page, moreover I am not getting anything in the login status label. Don't know where I am going wrong.
Please reply ASAP.
good work bro 😊
Good job bro!!!
Hi . I am new to Java are you working on a specified Design Pattern .. If Yes ..which one?
sir just a quick question. what are the advantages of the IDE that your using on this tutorial and is a free IDE? Because I'm using a netbeans IDE.
I like Netbeans but Intellij is Somewhat better in some cases when you are learning because it provide better suggestion well Any IDE will work but make sure you know how to work with sqlite with Netbeanse because there are different ways to Build jar and Add JDBC driver for Sqlite. Let me know if you have any issues
I am new in Java and most of the tutorial in youtube are outdated. I hope you will make more tutorials specially in javafx. thank you!
John Step i have many project videos please check the playlist of java project on my channel
ok sir thanks a lot!
Is "BUILD ARTIFACT" is the Deployment?
I mean, you can install it along with the database on any Computers right?
where's the part 2 of this tutorial sir? thanks. you helped me a lot
THANKYOU SOOOO MUUCHHH FOR THIS
POS system in Java Yeah ! please its will be great
@AwaisMirza sir please a videos on java collections framework covering all concepts.
Thank you
which topics should I learn to complete a database project by JAVA language. Please give me a list.
database design, sql and java.
WHY ERROR , SIR Awais? 1:18:40
Error:(55, 24) java: strings in switch are not supported in -source 1.6
(use -source 7 or higher to enable strings in switch)
Update your jdk
Thankyou Sir Awais , it works , but I can't login and didn't show ("Wrong Credential") . Why Sir ?
thanks for the new tutorial.
Thanks Share it please
Sir, I followed till 1:20:00 everything is fine. There is no error but don't know why when I click on login button the admin or student dashboard doesn't pops up.
+Deepak Kochhar try to download my code from github repository
Me too! I need help 😭 please
I found the problem! when you go to run it, your IDE is trying to create a another sqlite file, outside of source file, just copy the sqlite file you're using under students, and paste it over the one outside of SRC
+Steven R thanks for participating and helping others
sir where is the second part??
I appreciate it, thanks alot.
I want to add two tableview for insert data from database in different tabpan..please help me please
A just loved this so much this video! @KebradorSD
you earned a sub.
Can I make tables point to other tables? Imagine I have like 2000 maps. Every one has an ID. Now for every map there exist a table/array/list with Routes. Every Route has an ID or index and shall point to a table/array/list with all its coordinates - how would I do that? Or can I make some Kind of Array or List as a column data type? Please help I am very new to sql
Men a just hope u keep up this very good way of explaining stuff! And I'm really sure u will... @KebradorSD
+Awais Mirza waiting for second part
I created rs.toString(columnIndex: 1), it's telling me cannot be resolved to a variable. Any way you can help me fix this?
If you encounter with problem at 1:20 during this video - no dashboards appearance. You need just go to LoginModel and set code to rs = ps.executeQuery(); INSTEAD OF ps.executeQuery(). see on 41:56. And gonna be working!
im getting a SQL Exception, its showing the table is out of bound though i have inserted all the five rows. please help me out.
error in javafx classes in sqlite database connection class not found exception and runing of the parameters and object of loginModwl shows an error in the LoginController class
i have the project that contain personal information such as email address and password and other credentials that i don't wanna be seen by reverse engineer when they want to decompile my jar. i tried to use proguard but i can't make it so what should i do to make my app secure?
Hash and salt your information.
Hi! I want to know if how will I make the data in the table selectable, editable and deletable :( please reply asap
i am facing problem at 1:54:39
the Propertyvaluefactory doesn't connect to my StudentData and the property doesn't appear
please help
Can you give a link to the whole completed project?
can you use eclipse for this project instead of java fx
Assuming you mean eclipse instead of "intelij" , yes you can.
Is it possible that we can use Excel instead of a Database? if yes, then how?
Your 'add entry' button should toggle the 'load data' button after its finished, if the data is already loaded.
please help after click on login button don't show student and admin dashboard givelist of exception at this 1:19:26
Steven R
1 rok temu
I found the problem! when you go to run it, your IDE is trying to create a another sqlite file, outside of source file, just copy the sqlite file you're using under students, and paste it over the one outside of SRC
columnIndex and Property 1:54:47 are underlined and I don't seem to find what is causing the error plz help :(
I always get Error: Could not find or load main class sample.Main on 9:57 PLZ HELP
In the top right end of the intellij window you will find a dropdown main.. click-> edit configuration and the mainclass to loginapp.Loginapp
Hi can you release a video using hibernate for the same thing !
Thanks:)
Please can You provide me the link of another part of this video tutorials. i unable to find it. Cause some of the part i saw in missing like CSS part and student package part in this video is missing... please do quick i need to watch the 2nd part this video.
Does anyone know what to do when I have nullPointerException at 1:18:00 of the video when I press Login Button Exception tells me Error is caused by this line if(this.loginModel.isLogin(this.username.getText(), this.password.getText(), ((option)this.combobox.getValue()).toString())){
but I don't know why
thanks bro
Would this be an embedded database for the application?
hello please I need your help.mmi followed the video and have done everything but when I run the program ..after inputting the user details and click on login it gives me errors... java.Lang.NullPointerException
I made this project on Netbeans IDE . How to building this project to get a single executable file.? I tried the clean and build function of Netbeans but on opening the executable file the dashboard does not pop up..... Plz Help.....
"Michal.....I don't know the spelling but whatever that is" lmfao you for real?
Guys, I have been practicing with this tutorial and when I completed it and made the exact same app, (note: the app is working perfectly inside Netbeans and exactly like yours) I tried to make the .jar file and run it. The jar file is exported in "dist" folder of Netbeans projects folders, but when I try to execute it , it is not working as it should.. It is opening the login screen , but not functioning at all.. I am inserting the right or wrong credentials (user + password) but not doing nothing!! (i have copied the db as shown in the last part of the video).. I am working in linux/Ubuntu OS (if this might have anything to do with it..). Anybody else with this problem??
sir when i was trying to type in fxml file (fx:controller) it didn't give me a controller option cause me an error plz help
At 1:54:00 Im having trouble with PropertyValueFactory that ID property can't be sinked
Dude why you never used de css file?
1:05:39 who has that name on is it Steam? (Seems a little inappropriate)
lmao nice catch
What if I want to share this application with others and have multiple users sharing the same backend?
Sir, how can I add another file for the information about the teachers and load or edit data too?? Can you help me with that?
+mahjabin rahman read java docs and find to replicate the solution
Thank you so much
Will you upload part 2 ?
I've gotten up to the point where you tried out the button to see if you could create another stage. I get no response at all. No new windows are created and the label doesn't get updated about the credentials. I tried adding a System.exit(0) and the button is working, only that I get no response for the other code. Completly at a loss here.
+NilleJ tell me the time in the video and download this the code from my git hub and match what you are missing
At 1:19:00
Could you link me to your github?
+NilleJ i have checked the time in the video you need to explain abit details that if you are getting any exception and make sure that you are conntected to database of it still doesn't work let me know anf source code can be provided upon request
+NilleJ download source code: github.com/awaismirza
Hey I cant load my form in Scene builder when I have done putting some button and textbox, it says no injected Controller in FXML found, Like that. Anyone I need your help.
Dear Sir,
i can't copy school.sqlite go into intellij,so can u show me how to do that,.... pls
hi~ i am a newbie. why i have this error that package java.sql is not visible?
I hv no container option in my scene builder in intelij help me awais
on 1:19:15 dont work i push login butnothing happens why that?
Sir how to back up sqlite dbase using gui swing of java eclipse?
sir i need school software is it developed completely actually i am not getting about features in this i will pay for that if you give software
Sir, how to add a remove entry button in the table????
Sir, I need ur help in making a java program on college management.
Pls help me
I still have error at 56:25...what could it be???
Please do attendance management system in Java desktop app.
I have the same problem as the other guy who commented here, i followed everything but at 1 hr and 20 mins in the video , i run my program and its not doing anything(no errors showing also). Please help, i followed you in SC and also sent a message to you there. Pls help, thanks.
+Ryle D. Alright what error you are getting I mean what is not showing explain your error a bit more
Awais Mirza its actually working now. :-) im so happy! In the dbUtil package -> dbConnection -> i change the file format to .db instead of .sqlite.
I want to add logout(return to loginpage) and delete button, do you have source code for that too?
I was able to add new tab, now i just need those two buttons and im set :-)
Which file did you change the format for?