Advertisement
ADL_Rodrigo_Silva

Untitled

Jan 20th, 2022
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.32 KB | None | 0 0
  1.  
  2. import java.sql.Connection;
  3. import java.sql.DriverManager;
  4. import java.sql.ResultSet;
  5. import java.sql.Statement;
  6. import java.util.ArrayList;
  7.  
  8. public class SelectTable {
  9.  
  10.    
  11.     public static void main(String[] args) throws Exception {
  12.        
  13.         Connection c = null;
  14.         Statement stat = null;
  15.        
  16.         try {
  17.              // Cargar controlador de datos, base de datos
  18.             Class.forName("org.postgresql.Driver");
  19.              // Conéctese a la dirección de la base de datos, nombre, contraseña
  20.             c= DriverManager
  21.                     .getConnection("jdbc:postgresql://127.0.0.1:5432/postgres", "postgres", "maxhito");
  22.             c.setAutoCommit(false);
  23.             System.out.println("Opened database successfully");
  24.            
  25.             stat = c.createStatement();
  26.            
  27.              // Consulta la base de datos
  28.    
  29.             ResultSet rs = stat.executeQuery("SELECT * FROM BBQ;");
  30.             while ( rs.next() ) {
  31.            
  32.                
  33.                 System.out.println(rs.getInt("id"));
  34.                 System.out.println(rs.getString("name"));
  35.                 System.out.println(rs.getInt("age"));
  36.                 System.out.println(rs.getString("address"));   
  37.                 System.out.println();
  38.              }
  39.            
  40.             rs.close();
  41.             stat.close();
  42.             c.close();
  43.         } catch (ClassNotFoundException e) {
  44.             System.err.println( e.getClass().getName()+": "+ e.getMessage() );
  45.             System.exit(0);
  46.         }
  47.         System.out.println("Operation done successfully");
  48.        
  49.     }
  50.  
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement