当前位置:Gxlcms > 数据库问题 > Java连接postgresql数据库

Java连接postgresql数据库

时间:2021-07-01 10:21:17 帮助过:18人阅读

test; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; public class HelloWorld { public static void main(String []args) { Connection connection=null; Statement statement =null; try{ String url="jdbc:postgresql://127.0.0.1:5432/postgis"; String user="postgres"; String password = "123456"; Class.forName("org.postgresql.Driver"); connection= DriverManager.getConnection(url, user, password); System.out.println("是否成功连接pg数据库"+connection); String sql="select name from test"; statement=connection.createStatement(); ResultSet resultSet=statement.executeQuery(sql); while(resultSet.next()){ String name=resultSet.getString(1); System.out.println(name); } }catch(Exception e){ throw new RuntimeException(e); }finally{ try{ statement.close(); } catch(SQLException e){ e.printStackTrace(); throw new RuntimeException(e); }finally{ try{ connection.close(); } catch(SQLException e){ e.printStackTrace(); throw new RuntimeException(e); } } } } }

运行结果:
技术分享

Java连接postgresql数据库

标签:targe   jdbc   print   url   stat   lib   package   ring   next   

人气教程排行