UbigeoSqlserverDAO.java 12.7 KB
Newer Older
Luis Gangas committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package trismegistoplanilla.sqlserverdao;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import org.json.JSONArray;
import org.json.JSONObject;
import trismegistoplanilla.beans.UbigeoBean;
import trismegistoplanilla.dao.UbigeoDAO;
import trismegistoplanilla.utilities.ResponseHelper;
import trismegistoplanilla.utilities.Variables;

public class UbigeoSqlserverDAO implements UbigeoDAO {

16 17 18 19 20 21 22 23
	@Override
	public JSONObject listarDepartamento() {
		System.out.println("UbigeoSqlserverDAO: listarDepartamento");
		JSONObject jsonListarDepartamento = null;
		JSONArray jsonArrayListarDepartamento = new JSONArray();
		PreparedStatement ps = null;
		ResultSet rs = null;
		Connection connection = null;
Luis Gangas committed
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
		ResponseHelper response = new ResponseHelper();
		try {
			connection = SqlserverDAOFactory.obtenerConexion(Variables.BD_NAME);
			String sql
				= "select "
				+ "codigo_departamento codigoDepartamento, "
				+ "nombre_departamento nombreDepartamento "
				+ "from ubigeo "
				+ "where estado_registro = 1 "
				+ "group by codigo_departamento, nombre_departamento "
				+ "order by nombre_departamento asc";
			ps = connection.prepareStatement(sql);
			rs = ps.executeQuery();
			while (rs.next()) {
				UbigeoBean ubigeo = new UbigeoBean();
				ubigeo.setCodigoDepartamento(rs.getInt("codigoDepartamento"));
				ubigeo.setNombreDepartamento(rs.getString("nombreDepartamento"));
				JSONObject jsonObjUbigeo = new JSONObject(ubigeo);
				jsonArrayListarDepartamento.put(jsonObjUbigeo);
			}
			JSONObject jsonObjUbigeo = new JSONObject();
			jsonObjUbigeo.put("departamentos", jsonArrayListarDepartamento);
			response.setStatus(true);
			response.setMessage("Los departamentos se han listado correctamente.");
			response.setData(jsonObjUbigeo);
Luis Gangas committed
50

51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
		} catch (SQLException e) {
			e.printStackTrace();
			response.setStatus(false);
			response.setMessage("Error: " + e.getMessage() + " \n Error Code: [" + e.getErrorCode() + "]");
		} finally {
			try {
				if (connection != null) {
					connection.close();
				}
				if (ps != null) {
					ps.close();
				}
				if (rs != null) {
					rs.close();
				}
			} catch (SQLException e) {
				e.printStackTrace();
			}
		}
Luis Gangas committed
70

71 72 73
		jsonListarDepartamento = new JSONObject(response);
		return jsonListarDepartamento;
	}
Luis Gangas committed
74

75 76 77 78 79 80 81 82
	@Override
	public JSONObject listarProvincia(UbigeoBean ubigeo) {
		System.out.println("UbigeoSqlserverDAO: listarProvincia");
		JSONObject jsonListarDepartamento = null;
		JSONArray jsonArrayListarDepartamento = new JSONArray();
		PreparedStatement ps = null;
		ResultSet rs = null;
		Connection connection = null;
Luis Gangas committed
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
		ResponseHelper response = new ResponseHelper();
		try {
			connection = SqlserverDAOFactory.obtenerConexion(Variables.BD_NAME);
			String sql
				= "select "
				+ "codigo_provincia codigoProvincia, "
				+ "nombre_provincia nombreProvincia "
				+ "from ubigeo "
				+ "where codigo_departamento = ? "
				+ "group by codigo_provincia, nombre_provincia "
				+ "order by nombre_provincia asc";
			ps = connection.prepareStatement(sql);
			ps.setInt(1, ubigeo.getCodigoDepartamento());
			rs = ps.executeQuery();
			while (rs.next()) {
				UbigeoBean ubigeoBean = new UbigeoBean();
				ubigeoBean.setCodigoProvincia(rs.getInt("codigoProvincia"));
				ubigeoBean.setNombreProvincia(rs.getString("nombreProvincia"));
				JSONObject jsonObjUbigeo = new JSONObject(ubigeoBean);
				jsonArrayListarDepartamento.put(jsonObjUbigeo);
			}
			JSONObject jsonObjUbigeo = new JSONObject();
			jsonObjUbigeo.put("provincias", jsonArrayListarDepartamento);
			response.setStatus(true);
			response.setMessage("Las provincias se han listado correctamente.");
			response.setData(jsonObjUbigeo);
Luis Gangas committed
110

111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
		} catch (SQLException e) {
			e.printStackTrace();
			response.setStatus(false);
			response.setMessage("Error: " + e.getMessage() + " \n Error Code: [" + e.getErrorCode() + "]");
		} finally {
			try {
				if (connection != null) {
					connection.close();
				}
				if (ps != null) {
					ps.close();
				}
				if (rs != null) {
					rs.close();
				}
			} catch (SQLException e) {
				e.printStackTrace();
			}
		}
Luis Gangas committed
130

131 132 133
		jsonListarDepartamento = new JSONObject(response);
		return jsonListarDepartamento;
	}
Luis Gangas committed
134

135 136 137 138 139 140 141 142
	@Override
	public JSONObject listarDistrito(UbigeoBean ubigeo) {
		System.out.println("UbigeoSqlserverDAO: listarDistrito");
		JSONObject jsonListarDepartamento = null;
		JSONArray jsonArrayListarDepartamento = new JSONArray();
		PreparedStatement ps = null;
		ResultSet rs = null;
		Connection connection = null;
Luis Gangas committed
143

144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
		ResponseHelper response = new ResponseHelper();
		try {
			connection = SqlserverDAOFactory.obtenerConexion(Variables.BD_NAME);
			String sql
				= "select "
				+ "codigo_distrito codigoDistrito, "
				+ "nombre_distrito nombreDistrito "
				+ "from ubigeo "
				+ "where codigo_departamento = ? and codigo_provincia = ? "
				+ "group by codigo_distrito, nombre_distrito "
				+ "order by nombre_distrito asc";
			ps = connection.prepareStatement(sql);
			ps.setInt(1, ubigeo.getCodigoDepartamento());
			ps.setInt(2, ubigeo.getCodigoProvincia());
			rs = ps.executeQuery();
			while (rs.next()) {
				UbigeoBean ubigeoBean = new UbigeoBean();
				ubigeoBean.setCodigoDistrito(rs.getInt("codigoDistrito"));
				ubigeoBean.setNombreDistrito(rs.getString("nombreDistrito"));
				JSONObject jsonObjUbigeo = new JSONObject(ubigeoBean);
				jsonArrayListarDepartamento.put(jsonObjUbigeo);
			}
			JSONObject jsonObjUbigeo = new JSONObject();
			jsonObjUbigeo.put("distritos", jsonArrayListarDepartamento);
			response.setStatus(true);
			response.setMessage("Los distritos se han listado correctamente.");
			response.setData(jsonObjUbigeo);
Luis Gangas committed
171

172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
		} catch (SQLException e) {
			e.printStackTrace();
			response.setStatus(false);
			response.setMessage("Error: " + e.getMessage() + " \n Error Code: [" + e.getErrorCode() + "]");
		} finally {
			try {
				if (rs != null) {
					rs.close();
				}
				if (ps != null) {
					ps.close();
				}
				if (connection != null) {
					connection.close();
				}
			} catch (SQLException e) {
				e.printStackTrace();
			}
		}
Luis Gangas committed
191

192 193 194
		jsonListarDepartamento = new JSONObject(response);
		return jsonListarDepartamento;
	}
Luis Gangas committed
195

196 197 198 199 200 201
	@Override
	public JSONObject validarExistenciaDepartamento(UbigeoBean ubigeo) {
		System.out.println("UbigeoSqlserverDAO: validarExistenciaDepartamento");
		JSONObject jsonValidarExistenciaDepartamento = null;
		ResponseHelper response = new ResponseHelper();
		int existeDepartamento = 0;
Luis Gangas committed
202

203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
		Connection connection = null;
		PreparedStatement ps = null;
		ResultSet rs = null;
		try {
			connection = SqlserverDAOFactory.obtenerConexion(Variables.BD_NAME);
			String sql
				= "select "
				+ "count(1) as existeDepartamento "
				+ "from ubigeo "
				+ "where codigo_departamento = ? and estado_registro = 1";
			ps = connection.prepareStatement(sql);
			ps.setInt(1, ubigeo.getCodigoDepartamento());
			rs = ps.executeQuery();
			rs.next();
			existeDepartamento = rs.getInt("existeDepartamento");
			
			if (existeDepartamento > 0) {
				response.setStatus(true);
				response.setMessage("El departamento seleccionado existe.");
			} else if (existeDepartamento == 0) {
				response.setStatus(false);
				response.setMessage("El departamento seleccionado no existe.");
			}
Luis Gangas committed
226

227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
		} catch (SQLException e) {
			e.printStackTrace();
			response.setStatus(false);
			response.setMessage("Error: " + e.getMessage() + " \n Error Code: [" + e.getErrorCode() + "]");
		} finally {
			try {
				if (rs != null) {
					rs.close();
				}
				if (ps != null) {
					ps.close();
				}
				if (connection != null) {
					connection.close();
				}
			} catch (SQLException e) {
				e.printStackTrace();
			}
		}
		jsonValidarExistenciaDepartamento = new JSONObject(response);
		return jsonValidarExistenciaDepartamento;
	}
Luis Gangas committed
249

250 251 252 253 254 255
	@Override
	public JSONObject validarExistenciaProvincia(UbigeoBean ubigeo) {
		System.out.println("UbigeoSqlserverDAO: validarExistenciaProvincia");
		JSONObject jsonValidarExistenciaProvincia = null;
		ResponseHelper response = new ResponseHelper();
		int existeProvincia = 0;
Luis Gangas committed
256

257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
		Connection connection = null;
		PreparedStatement ps = null;
		ResultSet rs = null;
		try {
			connection = SqlserverDAOFactory.obtenerConexion(Variables.BD_NAME);
			String sql
				= "select "
				+ "count(1) as existeProvincia "
				+ "from ubigeo "
				+ "where codigo_departamento = ? and codigo_provincia = ? and estado_registro = 1";
			ps = connection.prepareStatement(sql);
			ps.setInt(1, ubigeo.getCodigoDepartamento());
			ps.setInt(2, ubigeo.getCodigoProvincia());
			rs = ps.executeQuery();
			rs.next();
			existeProvincia = rs.getInt("existeProvincia");
			if (existeProvincia > 0) {
				response.setStatus(true);
				response.setMessage("La provincia seleccionada existe.");
			} else if (existeProvincia == 0) {
				response.setStatus(false);
				response.setMessage("La provincia seleccionada no existe.");
			}
Luis Gangas committed
280

281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302
		} catch (SQLException e) {
			e.printStackTrace();
			response.setStatus(false);
			response.setMessage("Error: " + e.getMessage() + " \n Error Code: [" + e.getErrorCode() + "]");
		} finally {
			try {
				if (rs != null) {
					rs.close();
				}
				if (ps != null) {
					ps.close();
				}
				if (connection != null) {
					connection.close();
				}
			} catch (SQLException e) {
				e.printStackTrace();
			}
		}
		jsonValidarExistenciaProvincia = new JSONObject(response);
		return jsonValidarExistenciaProvincia;
	}
Luis Gangas committed
303

304 305 306 307 308 309
	@Override
	public JSONObject validarExistenciaDistrito(UbigeoBean ubigeo) {
		System.out.println("UbigeoSqlserverDAO: validarExistenciaDistrito");
		JSONObject jsonValidarExistenciaDistrito = null;
		ResponseHelper response = new ResponseHelper();
		int existeDistrito = 0;
Luis Gangas committed
310

311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334
		Connection connection = null;
		PreparedStatement ps = null;
		ResultSet rs = null;
		try {
			connection = SqlserverDAOFactory.obtenerConexion(Variables.BD_NAME);
			String sql
				= "select "
				+ "count(codigo_distrito) as existeDistrito "
				+ "from ubigeo "
				+ "where codigo_departamento = ? and codigo_provincia = ? and codigo_distrito = ? and estado_registro = 1";
			ps = connection.prepareStatement(sql);
			ps.setInt(1, ubigeo.getCodigoDepartamento());
			ps.setInt(2, ubigeo.getCodigoProvincia());
			ps.setInt(3, ubigeo.getCodigoDistrito());
			rs = ps.executeQuery();
			rs.next();
			existeDistrito = rs.getInt("existeDistrito");
			if (existeDistrito > 0) {
				response.setStatus(true);
				response.setMessage("El distrito seleccionado existe.");
			} else if (existeDistrito == 0) {
				response.setStatus(false);
				response.setMessage("El distrito seleccionado no existe.");
			}
Luis Gangas committed
335

336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
		} catch (SQLException e) {
			e.printStackTrace();
			response.setStatus(false);
			response.setMessage("Error: " + e.getMessage() + " \n Error Code: [" + e.getErrorCode() + "]");
		} finally {
			try {
				if (rs != null) {
					rs.close();
				}
				if (ps != null) {
					ps.close();
				}
				if (connection != null) {
					connection.close();
				}
			} catch (SQLException e) {
				e.printStackTrace();
			}
		}
		jsonValidarExistenciaDistrito = new JSONObject(response);
		return jsonValidarExistenciaDistrito;
	}
Luis Gangas committed
358

359 360 361 362 363 364 365
	@Override
	public JSONObject obtenerCodigoUbigeo(UbigeoBean ubigeo) {
		System.out.println("UbigeoSqlserverDAO: obtenerCodigoUbigeo");
		JSONObject jsonObtenerCodigoUbigeo = null;
		PreparedStatement ps = null;
		ResultSet rs = null;
		Connection connection = null;
Luis Gangas committed
366

367 368
		int codigoUbigeo = 0;
		ResponseHelper response = new ResponseHelper();
Luis Gangas committed
369

370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395
		try {
			connection = SqlserverDAOFactory.obtenerConexion(Variables.BD_NAME);
			String sql
				= "select codigo_ubigeo as codigoUbigeo "
				+ "from ubigeo "
				+ "where codigo_departamento = ? "
				+ "and codigo_provincia = ? "
				+ "and codigo_distrito = ? "
				+ "and estado_registro = 1";
			ps = connection.prepareStatement(sql);
			ps.setInt(1, ubigeo.getCodigoDepartamento());
			ps.setInt(2, ubigeo.getCodigoProvincia());
			ps.setInt(3, ubigeo.getCodigoDistrito());
			rs = ps.executeQuery();
			rs.next();
			codigoUbigeo = rs.getInt("codigoUbigeo");
			if (codigoUbigeo > 0) {
				JSONObject getResultedKey = new JSONObject();
				getResultedKey.put("getResultedKey", codigoUbigeo);
				response.setStatus(true);
				response.setData(getResultedKey);
				response.setMessage("Se obtuvo el código correctamente");
			} else {
				response.setStatus(false);
				response.setMessage("No se pudo obtener el código");
			}
Luis Gangas committed
396

397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
		} catch (SQLException e) {
			e.printStackTrace();
			response.setStatus(false);
			response.setMessage("Error: " + e.getMessage() + " \n Error Code: [" + e.getErrorCode() + "]");
		} finally {
			try {
				if (rs != null) {
					rs.close();
				}
				if (ps != null) {
					ps.close();
				}
				if (connection != null) {
					connection.close();
				}
			} catch (SQLException e) {
				e.printStackTrace();
			}
		}
Luis Gangas committed
416

417 418 419
		jsonObtenerCodigoUbigeo = new JSONObject(response);
		return jsonObtenerCodigoUbigeo;
	}
Luis Gangas committed
420 421

}