- Видео 109
- Просмотров 1 481 349
Java Code Junkie
Канада
Добавлен 20 сен 2014
Welcome to Java Code Junkie! At Java Code Junkie, we create FREE Java computer programming tutorials.
I have been a computer programmer and teacher for over 35 years and this channel is my way of giving back to the programming community. I would love to share my experience with you to help you become a successful Java programmer.
I love open source and all of the tools that I use can be downloaded and used for FREE, so there should be no financial obstacle to your learning. All you need is the desire!
Please leave your comments in the comments section if you have any questions or suggestions for improving the channel.
Also, please subscribe and click the bell icon to be notified when I publish new videos. I try to provide new videos once a week but, if I have more time, I will post more frequently.
Thanks for stopping by and I hope to see you in the next video! ;-)
Until then, stay safe and keep on coding!
Dave (a.k.a. Java Code Junkie)
I have been a computer programmer and teacher for over 35 years and this channel is my way of giving back to the programming community. I would love to share my experience with you to help you become a successful Java programmer.
I love open source and all of the tools that I use can be downloaded and used for FREE, so there should be no financial obstacle to your learning. All you need is the desire!
Please leave your comments in the comments section if you have any questions or suggestions for improving the channel.
Also, please subscribe and click the bell icon to be notified when I publish new videos. I try to provide new videos once a week but, if I have more time, I will post more frequently.
Thanks for stopping by and I hope to see you in the next video! ;-)
Until then, stay safe and keep on coding!
Dave (a.k.a. Java Code Junkie)
Install DBeaver Community Edition
In this tutorial we will learn how to install and setup DBeaver Community Edition.
DBeaver is a SQL client software application and a database administration tool. For relational databases it uses the JDBC application programming interface (API) to interact with databases via a JDBC driver. For other databases (NoSQL) it uses proprietary database drivers. It provides an editor that supports code completion and syntax highlighting. It provides a plug-in architecture (based on the Eclipse plugins architecture) that allows users to modify much of the application's behavior to provide database-specific functionality or features that are database-independent. This is a desktop application writt...
DBeaver is a SQL client software application and a database administration tool. For relational databases it uses the JDBC application programming interface (API) to interact with databases via a JDBC driver. For other databases (NoSQL) it uses proprietary database drivers. It provides an editor that supports code completion and syntax highlighting. It provides a plug-in architecture (based on the Eclipse plugins architecture) that allows users to modify much of the application's behavior to provide database-specific functionality or features that are database-independent. This is a desktop application writt...
Просмотров: 29 979
Видео
FileChooser | JavaFX GUI Tutorial for Beginners
Просмотров 9 тыс.2 года назад
In this JavaFX GUI tutorial for Beginners we will learn how to use the FileChooser Dialog. FileChooser provides support for standard platform file dialogs. These dialogs have look and feel of the platform UI components which is independent of JavaFX. A FileChooser can be used to invoke file open dialogs for selecting single file (showOpenDialog), file open dialogs for selecting multiple files (...
Setup | SQLite Tutorial for Beginners
Просмотров 3,4 тыс.2 года назад
In this SQLite Tutorial for Beginners we will learn how to download and setup SQLite and the Xerial SQLite JDBC Driver. Check out my RUclips Channel for more FREE videos ruclips.net/user/JavaCodeJunkie Do you want to learn more about Java and how you can grow your skills as a Java Developer? SUBSCRIBE and ring that bell!
JCheckBox | Java Swing Tutorial for Beginners
Просмотров 6 тыс.2 года назад
In this Java Swing tutorial for Beginners we will learn how to use the JCheckBox Control. Eclipse Project code is available on GitHub github.com/JavaCodeJunkie Check out my RUclips Channel for more FREE videos ruclips.net/user/JavaCodeJunkie Do you want to learn more about Java and how you can grow your skills as a Java Developer? SUBSCRIBE and ring that bell!
DAO Delete | DAO Tutorial for Beginners
Просмотров 4,4 тыс.2 года назад
In this JavaFX GUI tutorial for Beginners we will complete our EmployeeDAO Implementation by coding the Delete method. Eclipse Project code is available on GitHub github.com/JavaCodeJunkie Check out my RUclips Channel for more FREE videos ruclips.net/user/JavaCodeJunkie Do you want to learn more about Java and how you can grow your skills as a Java Developer? SUBSCRIBE and ring that bell!
DAO Update | DAO Tutorial for Beginners
Просмотров 5 тыс.2 года назад
In this JavaFX GUI tutorial for Beginners we will learn how to code the DAO Update method. Eclipse Project code is available on GitHub github.com/JavaCodeJunkie Check out my RUclips Channel for more FREE videos ruclips.net/user/JavaCodeJunkie Do you want to learn more about Java and how you can grow your skills as a Java Developer? SUBSCRIBE and ring that bell!
DAO Insert | DAO Tutorial for Beginners
Просмотров 8 тыс.2 года назад
In this JavaFX GUI tutorial for Beginners we will learn how to create an Insert method for our EmployeeDAO Implementation. Eclipse Project code is available on GitHub github.com/JavaCodeJunkie Check out my RUclips Channel for more FREE videos ruclips.net/user/JavaCodeJunkie Do you want to learn more about Java and how you can grow your skills as a Java Developer? SUBSCRIBE and ring that bell!
DAO Retrieve All | DAO Tutorial for Beginners
Просмотров 1,2 тыс.2 года назад
In this DAO Tutorial for Beginners we will learn how to code a DAO Retrieve All method. Eclipse Project code is available on GitHub github.com/JavaCodeJunkie Check out my RUclips Channel for more FREE videos ruclips.net/user/JavaCodeJunkie Do you want to learn more about Java and how you can grow your skills as a Java Developer? SUBSCRIBE and ring that bell!
DAO Retrieve | DAO Tutorial for Beginners
Просмотров 13 тыс.2 года назад
In this Data Access Objects tutorial for Beginners we will learn how to retrieve a record from our database using the DAO Retrieve method in the EmployeeDAOImpl class that we created. JDBC Playlist ruclips.net/p/PL3bGLnkkGnuXZeK5Rbp55AcuWhz4RuMZ1 Eclipse Project code is available on GitHub github.com/JavaCodeJunkie Check out my RUclips Channel for more FREE videos ruclips.net/user/JavaCodeJunki...
DAO Connection | DAO Tutorial for Beginners
Просмотров 15 тыс.2 года назад
In this DAO tutorial for Beginners we will learn how to create a DAO Connection. The concrete DAO implementation encapsulates the JDBC Connection and makes it possible to persist data from one session to the next. The DAO Connection will be implemented as a static method so that you do not need to instantiate the Database object in order to get a connection object. JDBC ruclips.net/p/PL3bGLnkkG...
DAO Implementation - DAO Tutorial for Beginners
Просмотров 16 тыс.2 года назад
In this DAO Tutorial for Beginners we will learn how to implement the DAO using the DAO Interface that we created in the last episode. A DAO Implementation is a concrete class that implements the DAO Interface and encapsulates the persistence logic. Eclipse Project code is available on GitHub github.com/JavaCodeJunkie Check out my RUclips Channel for more FREE videos ruclips.net/user/JavaCodeJu...
DAO Interface | DAO Tutorial for Beginners
Просмотров 24 тыс.2 года назад
In this DAO tutorial for Beginners we will learn how to create a Data Access Object Interface. The DAO Interface defines the standard operations to be performed on model objects. It is an abstraction of the class that will hold the concrete implementation of our persistence logic. Eclipse Project code is available on GitHub github.com/JavaCodeJunkie Check out my RUclips Channel for more FREE vi...
Create DTO | DAO Tutorial for Beginners
Просмотров 26 тыс.2 года назад
In this DAO tutorial for Beginners we will learn how to create a Data Transfer Object (DTO). In computer programming, a data transfer object is an object that carries data between processes. The difference between data transfer objects and business objects or data access objects is that a DTO does not have any behaviour except for storage and retrieval of its own data. In other words, DTOs are ...
What is a DAO | DAO Tutorial for Beginners
Просмотров 37 тыс.2 года назад
In this JavaFX GUI tutorial for Beginners we will learn about Data Access Objects (DAO). A data access object (DAO) is a pattern that provides an abstract interface to some type of database or other persistence mechanism. By mapping application calls to the persistence layer, the DAO provides some specific data operations without exposing details of the database. Check out my RUclips Channel fo...
Trigger | MariaDB Tutorial for Beginners
Просмотров 4,7 тыс.2 года назад
In this MariaDB tutorial for Beginners we will learn how to to use a Trigger. A trigger is a set of statements that will run when an event occurs on a table. The main use for a trigger is to maintain data integrity of the information in a database. Eclipse Project code is available on GitHub github.com/JavaCodeJunkie Check out my RUclips Channel for more FREE videos ruclips.net/user/JavaCodeJun...
Dialog | JavaFX GUI Tutorial for Beginners
Просмотров 7 тыс.3 года назад
Dialog | JavaFX GUI Tutorial for Beginners
JMenu | Java Swing GUI Tutorial for Beginners
Просмотров 10 тыс.3 года назад
JMenu | Java Swing GUI Tutorial for Beginners
JPasswordField | Java Swing Tutorial for Beginners
Просмотров 8 тыс.3 года назад
JPasswordField | Java Swing Tutorial for Beginners
ProgressIndicator | JavaFX GUI Tutorial for Beginners
Просмотров 1,9 тыс.3 года назад
ProgressIndicator | JavaFX GUI Tutorial for Beginners
ProgressBar - JavaFX GUI Tutorial for Beginners
Просмотров 2,5 тыс.3 года назад
ProgressBar - JavaFX GUI Tutorial for Beginners
Updatable View | MariaDB Tutorial for Beginners
Просмотров 3,1 тыс.3 года назад
Updatable View | MariaDB Tutorial for Beginners
Install DBeaver | MariaDB Tutorial for Beginners
Просмотров 9 тыс.3 года назад
Install DBeaver | MariaDB Tutorial for Beginners
Tab Events - JavaFX GUI Tutorial for Beginners
Просмотров 1,6 тыс.3 года назад
Tab Events - JavaFX GUI Tutorial for Beginners
MigLayout | Java Swing Tutorial for Beginners
Просмотров 15 тыс.3 года назад
MigLayout | Java Swing Tutorial for Beginners
Nimbus Look and Feel | Java Swing Tutorial for Beginners
Просмотров 9 тыс.3 года назад
Nimbus Look and Feel | Java Swing Tutorial for Beginners
CallableStatement | JDBC Tutorial for Beginners
Просмотров 9 тыс.3 года назад
CallableStatement | JDBC Tutorial for Beginners
Create Procedure | MariaDB Tutorial for Beginners
Просмотров 9 тыс.3 года назад
Create Procedure | MariaDB Tutorial for Beginners
Menu | JavaFX GUI Tutorial for Beginners
Просмотров 2,2 тыс.3 года назад
Menu | JavaFX GUI Tutorial for Beginners
Spinner | JavaFX GUI Tutorial for Beginners
Просмотров 1,8 тыс.3 года назад
Spinner | JavaFX GUI Tutorial for Beginners
PreparedStatement | JDBC Tutorial for Beginners
Просмотров 22 тыс.3 года назад
PreparedStatement | JDBC Tutorial for Beginners