How to install XAMPP server on Windows
XAMPP is a popular software for learning web programming. All necessary tools to implement a web application are included in this software, such as Apache,…
Learn by easy steps
XAMPP is a popular software for learning web programming. All necessary tools to implement a web application are included in this software, such as Apache,…
Procedure is used to execute the block of SQL statements multiple times in the database server. It works similar to the function or procedure of…
View is a virtual table that is created from an existing database table. The way of creating, updating, and deleting view has been shown in…
The auto-increment attribute is used in the primary key field of the database table to increment the field automatically when any new record is inserted…
The concept of the third normal form (2NF) has been explained in this tutorial by using the Oracle database tables. Run the SQL Developer application…
The concept of the second normal form (2NF) has been explained in this tutorial by using the Oracle database tables. Run the SQL Developer application…
The concept of the first normal form (1NF) has been explained in this tutorial by creating the tables in the Oracle database. Run the SQL…
It is a common requirement to send email using any scripting language for the web application. The SMTP server of the Gmail account is commonly…
Inheritance is a very important feature of object oriented programming. The way of creating single and multi-level inheritance has been shown in this tutorial. Example-1:…
Different types of constructors can be defined in Java to do the initialization tasks. The way of defining parameterless constructor, parameterized constructor, and copy constructor…