package br.edu.ifba.inf008.contabil;

import java.sql.DriverManager;
import java.sql.SQLException;

public class TesteJDBC {
	
	public static void main(String[] args) throws SQLException {
		System.out.println("Conectando...");
		DriverManager.registerDriver(new org.postgresql.Driver());
		DriverManager.getConnection("jdbc:postgresql://localhost:5432/postgres", "aluno", "aluno");
		System.out.println("Finalizando...");
		
	}

}
