Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.sql.Connection;
import java.sql.DriverManager;

public class Main {
    public static void main(String[] argv) throws Exception {
        Class.forName("org.postgresql.Driver");
        Connection connection = DriverManager.getConnection("jdbc:postgresql://127.0.0.1:5432/testdb", "userName",
                "password");
        if (connection != null) {
            System.out.println("Connected");
        } else {
            System.out.println("Failed to make connection!");
        }
    }
}