SQL 조인 쿼리 예
-- -- -- - select * from RENTCAR natural join CARRESERVE where sysdate < to_date(rday, 'YYYY-MM-DD') and id='macaronics'; --- --
CarReserveView.jsp
<%@page import="db.CarViewBean"%> <%@page import="db.CarReserveBean"%> <%@page import="java.util.Vector"%> <%@page import="db.RentcarDAO"%> <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <% String id =(String)session.getAttribute("id"); if(id==null){ %> <script> alert("로그인을 먼저 해주세요"); location.href="RentCarMain.jsp?center=MemberLogin.jsp"; </script> <% } //로그인되어있는 아이디를 가지고 옴 RentcarDAO rdao =new RentcarDAO(); Vector<CarViewBean> v=rdao.getAllReserve(id); %>
CarReserveView.jsp
public class CarViewBean { private String name; private int price; private String img; private int qty; //수량 private int dday;//대여기간 private String rday;//대여일 private int userin; //보험적용 private int usewifi; //Wifi 적용 private int useseat; //베이비시트 적용 private int usenavi; //네이게이션 적용 getter, setter, ~~~ }
//회원의 예약정보를 리턴하는 메소드 public Vector<CarViewBean> getAllReserve(String id){ Vector<CarViewBean> v=new Vector<CarViewBean>(); getCon(); try{ String sql=""; }catch(Exception e){ e.printStackTrace(); }finally{ closed(); } return v; }
동영상 강좌와 다르게 모바일 적용이 가능한 반응형 부트스트랩을 사용하였다.
여기서는 jsp 를 배우는 강좌 이기 때문에 html 적 요소에는 비중있게 생각 하지 않아도 될 것이다.
또한, 일부 자바 코드는 제 입맛에 맞게 변경 하였습니다.
혹시, 이 강의를 들으면서 제 글을 읽고 소스코드를 참조하는 수강생이 있다면 동영상의 코드와 다르다고 생각지 마세요. 대부분 동여상 내용과 같으니 학습에 도움이 될거라 생각 합니다.
소스 : https://github.com/braverokmc79/jsp_sin
유튜브 동영상 출처 :
강사 : 신형섭(잭임연구원)
저작권 : (주)소프트캠퍼스 http://www.softcampus.co.kr 더많은 무료 강의는 사이트에서 확인하실수 있습니다.
댓글 ( 4)
댓글 남기기