Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package lab_jdbc;
- import java.sql.*;
- import java.util.Properties;
- import java.util.logging.Level;
- import java.util.logging.Logger;
- public class Lab_JDBC {
- private static void zad1() {
- Connection conn = null;
- Properties connectionProps = new Properties();
- connectionProps.put("user", "inf117288");
- connectionProps.put("password", "inf117288");
- try {
- conn = DriverManager.getConnection("jdbc:oracle:thin:@//admlab2-main.cs.put.poznan.pl:1521/dblab01.cs.put.poznan.pl",
- connectionProps);
- System.out.println("Połączono z bazą danych");
- } catch (SQLException ex) {
- Logger.getLogger(Lab_JDBC.class.getName()).log(Level.SEVERE,
- "nie udało się połączyć z bazą danych", ex);
- System.exit(-1);
- }
- Statement stmt = null;
- ResultSet rs = null;
- try {
- stmt = conn.createStatement();
- rs = stmt.executeQuery("select p.count(*), p.nazwisko, z.nazwa "
- + "from pracownicy p join zespoly z on p.id_zesp = z.id_zesp");
- System.out.println("Zatrudniono " + rs.getString(1) + " pracowników, w tym: ");
- while (rs.next()) {
- System.out.print(rs.getString(2) + " w zespole " + rs.getString(3));
- if (rs.next()) {
- System.out.println(",");
- } else {
- System.out.println();
- }
- }
- } catch (SQLException ex) {
- System.out.println("Bład wykonania polecenia" + ex.toString());
- } finally {
- if (rs != null) {
- try {
- rs.close();
- } catch (SQLException e) { /* kod obsługi */ }
- }
- if (stmt != null) {
- try {
- stmt.close();
- } catch (SQLException e) { /* kod obsługi */ }
- }
- try {
- conn.close();
- System.out.println("Rozlaczono z baza danych");
- } catch (SQLException ex) {
- Logger.getLogger(Lab_JDBC.class.getName()).log(Level.SEVERE, null, ex);
- }
- }
- }
- private static void zad2() {
- Connection conn = null;
- Properties connectionProps = new Properties();
- connectionProps.put("user", "inf117288");
- connectionProps.put("password", "inf117288");
- try {
- conn = DriverManager.getConnection("jdbc:oracle:thin:@//admlab2-main.cs.put.poznan.pl:1521/dblab01.cs.put.poznan.pl",
- connectionProps);
- System.out.println("Połączono z bazą danych");
- } catch (SQLException ex) {
- Logger.getLogger(Lab_JDBC.class.getName()).log(Level.SEVERE,
- "nie udało się połączyć z bazą danych", ex);
- System.exit(-1);
- }
- Statement stmt = null;
- ResultSet rs = null;
- try {
- stmt = conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,
- ResultSet.CONCUR_READ_ONLY);
- rs = stmt.executeQuery("select p.nazwisko "
- + "from pracownicy p join etaty e where e.nazwa = ASYSTENT ");
- rs.afterLast();
- while (rs.previous()) {
- System.out.println(rs.getString(1));
- }
- } catch (SQLException ex) {
- System.out.println("Bład wykonania polecenia" + ex.toString());
- } finally {
- if (rs != null) {
- try {
- rs.close();
- } catch (SQLException e) { /* kod obsługi */ }
- }
- if (stmt != null) {
- try {
- stmt.close();
- } catch (SQLException e) { /* kod obsługi */ }
- }
- try {
- conn.close();
- System.out.println("Rozlaczono z baza danych");
- } catch (SQLException ex) {
- Logger.getLogger(Lab_JDBC.class.getName()).log(Level.SEVERE, null, ex);
- }
- }
- }
- public static void main(String[] args) {
- zad2();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement