zoukankan      html  css  js  c++  java
  • java连接postgresql

    package  com.test;
     import  org.postgresql. * ;
     import  java.sql. * ;

     public   class  TestDB  {
        
     public  TestDB()  {
        }
     

        
     public   static   void  main(String args[])
        
     {
            System.out.print(
     " this is a test " );
            
     try 
             
     {
                Class.forName(
     " org.postgresql.Driver " ).newInstance();
                String url
     = " jdbc:postgresql://localhost:5432/postgres " ;
                Connection con
     = DriverManager.getConnection(url, " postgres " , " 1234 " );
                Statement st
     = con.createStatement();
                String sql
     = " select * from testtable " ;
                ResultSet rs
     = st.executeQuery(sql);
                
     while (rs.next())
                
     {
                    System.out.print(rs.getInt(
     1 ));
                    System.out.println(rs.getString(
     2 ));
                }
     

                rs.close();
                st.close();
                con.close();
                

            }
     

            
     catch (Exception ee)
            
     {
                System.out.print(ee.getMessage());
            }
     

        }
     

    }

  • 相关阅读:
    每日总结
    团队冲刺9
    团队冲刺8
    团队冲刺7
    团队冲刺6
    团队冲刺5
    团队冲刺4
    团对冲刺3
    团队冲刺2
    每日博客
  • 原文地址:https://www.cnblogs.com/zhaoxd/p/2959546.html
Copyright © 2011-2022 走看看