-
Notifications
You must be signed in to change notification settings - Fork 0
/
JDBCExample.java
131 lines (99 loc) · 3.96 KB
/
JDBCExample.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/*
* Copyright (C) 2015 hcadavid
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package edu.eci.cvds.sampleprj.jdbc.example;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.LinkedList;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
*
* @author hcadavid
*/
public class JDBCExample {
public static void main(String args[]){
try {
String url="jdbc:mysql://HOST:3306/BD";
String driver="com.mysql.jdbc.Driver";
String user="USER";
String pwd="PWD";
Class.forName(driver);
Connection con=DriverManager.getConnection(url,user,pwd);
con.setAutoCommit(false);
System.out.println("Valor total pedido 1:"+valorTotalPedido(con, 1));
List<String> prodsPedido=nombresProductosPedido(con, 1);
System.out.println("Productos del pedido 1:");
System.out.println("-----------------------");
for (String nomprod:prodsPedido){
System.out.println(nomprod);
}
System.out.println("-----------------------");
int suCodigoECI=20134423;
registrarNuevoProducto(con, suCodigoECI, "SU NOMBRE", 99999999);
con.commit();
con.close();
} catch (ClassNotFoundException | SQLException ex) {
Logger.getLogger(JDBCExample.class.getName()).log(Level.SEVERE, null, ex);
}
}
/**
* Agregar un nuevo producto con los parámetros dados
* @param con la conexión JDBC
* @param codigo
* @param nombre
* @param precio
* @throws SQLException
*/
public static void registrarNuevoProducto(Connection con, int codigo, String nombre,int precio) throws SQLException{
//Crear preparedStatement
//Asignar parámetros
//usar 'execute'
con.commit();
}
/**
* Consultar los nombres de los productos asociados a un pedido
* @param con la conexión JDBC
* @param codigoPedido el código del pedido
* @return
*/
public static List<String> nombresProductosPedido(Connection con, int codigoPedido){
List<String> np=new LinkedList<>();
//Crear prepared statement
//asignar parámetros
//usar executeQuery
//Sacar resultados del ResultSet
//Llenar la lista y retornarla
return np;
}
/**
* Calcular el costo total de un pedido
* @param con
* @param codigoPedido código del pedido cuyo total se calculará
* @return el costo total del pedido (suma de: cantidades*precios)
*/
public static int valorTotalPedido(Connection con, int codigoPedido){
//Crear prepared statement
//asignar parámetros
//usar executeQuery
//Sacar resultado del ResultSet
return 0;
}
}