Biblioteca Java - Blame information for rev 20
Subversion Repositories:
Rev | Author | Line No. | Line |
---|---|---|---|
20 | mihai | 1 | |
2 | package cfr; | ||
3 | import java.sql.*; | ||
4 | import java.util.*; | ||
5 | |||
6 | public class Cfr { | ||
7 | |||
8 | |||
9 | public static void main(String[] args) throws Exception { | ||
10 | System.out.println("Conectare..."); | ||
11 | Class.forName("com.mysql.jdbc.Driver"); | ||
12 | |||
13 | Connection conn = DriverManager.getConnection("jdbc:mysql://localhost/cfr?user=root"); | ||
14 | |||
15 | System.out.println("Conexiune realizata."); | ||
16 | |||
17 | ////////////////// | ||
18 | System.out.println("Lista trenuri"); | ||
19 | ConexiuneDb dbcfr = new ConexiuneDb(); | ||
20 | ArrayList<Tren> lista = dbcfr.cautaTrenuri("bucuresti"); | ||
21 | for(Tren t:lista){ | ||
22 | t.afisare(); | ||
23 | } | ||
24 | |||
25 | ////////////////// | ||
26 | |||
27 | System.out.println("Lista trenuri cu ora de plecare data"); | ||
28 | lista = dbcfr.cautaTrenuri("bucuresti",12); | ||
29 | for(Tren t:lista){ | ||
30 | t.afisare(); | ||
31 | } | ||
32 | |||
33 | ////////////////// | ||
34 | |||
35 | Simulator simulatorBucuresti = new Simulator("Bucuresti", dbcfr); | ||
36 | simulatorBucuresti.simuleaza(); | ||
37 | |||
38 | } | ||
39 | |||
40 | } |