public static void main(String[] args) throws SQLException { // TODO Auto-generated method stub
Statement stmt = null;
Connection conexao=DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:xe", "system", "will121290");
stmt = conexao.createStatement();
conexao.close();
}
}