week6a

Cards (11)

  • XAMPP is a free and open-source cross-platform web server solution stack package developed by Apache Friends.
  • The name XAMPP stands for Cross-platform (X), Apache (A,) MariaDB (M), PHP (P), and Perl (P).
  • It includes software components such as Apache HTTP Server, MariaDB (or MySQL), PHP, and Perl, which are necessary for hosting dynamic websites and web applications on a local machine.
  • XAMPP is commonly used for web development, testing, and hosting web applications locally before deploying them to a live server.
  • Using the Localhost, you can structure your table depending on the need of the project.
  • The Java Database Connectivity (JDBC) API is a Java API that allows developers to connect and interact with a database from Java applications.
  • JDBC provides a standard interface for accessing rational databases such as MySQL, PostgreSQL, SQL Server, and many others.
  • setText() method is used to assign a new text to an element.
  • What is the code for Clear Button?
    variablename.setText(" ");
  • it is a method used to dynamically load and register JDBC driver classes.?

    Class.forName("");
  • Login Button code?
    try {
    Class.forName("com.mysql.jdbc.Driver");
    } catch (ClassNotFoundExeption ex) {
    Logger.getLogger(login.class.getName()) .log(Level.SEVERE, null, ex): }