Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 안드로이드 개발 강좌
- 안드로이드 바탕화면
- 스마트폰 배경화면
- 안드로이드2.0
- 안드로이드폰
- objective-c
- android
- sky 시리우스폰
- Form Stuff
- 구글 안드로이드 개발
- 안드로이드 개발 2.0 강좌
- 아이폰 바탕화면
- 안드로이드 개발
- 인기있는 블로그 만들기
- 아이폰 배경화면
- SKY 시리우스
- 안드로이드
- 하루 한마디 영어
- 안드로이드 2.0 개발
- 안드로이드 배경화면
- 구글 안드로이드
- MapView
- 구글안드로이드
- 하루한마디영어
- 안드로이드 개발 2.0
- 스카이 안드로이드폰 시리우스 K양 동영상
- 안드로이드2.0개발
- 안드로이드개발
- 스카이 안드로이드폰 시리우스
- 영어
Archives
- Today
- Total
moozi
10/5 BookRent 본문
import java.awt.Dimension;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.Statement;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.table.DefaultTableModel;
public class BookRent extends JFrame{
DefaultTableModel model=null;
JTable table=null;
Connection conn=null;
Statement stmt;
String query;
public BookRent() {
query="select student.id, student.name, books.title, bookRent.rDate" +
" from bookRent, student2,books" +
" where bookRent.id=student.id" +
" and bookRent.bookNo=books.no" +
" order by bookRent.no";
try {
//DB연결
Class.forName("oracle.jdbc.driver.OracleDriver");
conn = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:myoracle", "ora_user", "hong");
//System.out.println("연결완료");
stmt=conn.createStatement();
}catch(Exception e) {
e.printStackTrace();
}
setTitle("학생관리");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);//x버튼 누르면 프로그램 종료
setLayout(null);//레이아웃설정. 레이아웃 사용 안함.
JLabel l_dept=new JLabel("학과");
l_dept.setBounds(10, 10, 30, 20);
add(l_dept);
String[] dept={"전체","컴퓨터시스템","멀티미디어","컴퓨터공학"};
JComboBox cb_dept=new JComboBox(dept);
cb_dept.setBounds(45, 10, 100, 20);
add(cb_dept);
cb_dept.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
//기본 쿼리
query="select s.id, s.name, b.title, br.rDate" +
" from student2 s, books b, bookRent br" +
" where br.id=s.id and br.bookNo=b.no";
JComboBox cb=(JComboBox)e.getSource();
int selectedIndex=cb.getSelectedIndex();//선택한 아이템의 index
//동적쿼리. 컴보박스 아이템에 따라서 쿼리가 달라짐
if(selectedIndex==0) {
query+=" order by s.id";
}else if(selectedIndex==1) {
query+=" and s.dept='컴퓨터시스템'" +
" order by b.no";
}else if(selectedIndex==2) {
query+=" and s.dept='멀티미디어'" +
" order by b.no";
}else if(selectedIndex==3) {
query+=" and s.dept='컴퓨터공학'" +
" order by b.no";
}
list(); //목록출력
}});
String colName[]={"학번","이름","도서명","대출일"};
model=new DefaultTableModel(colName,0);
table = new JTable(model);
table.setPreferredScrollableViewportSize(new Dimension(470,200));
add(table);
JScrollPane sp=new JScrollPane(table);
sp.setBounds(10, 40, 460, 250);
add(sp);
setSize(490, 400);//화면크기
setVisible(true);
//전체목록
list();
}
public void list(){
try{
System.out.println("연결되었습니다.....");
System.out.println(query);
// Select문 실행
ResultSet rs=stmt.executeQuery(query);
//JTable 초기화
model.setNumRows(0);
while(rs.next()){
String[] row=new String[4];//컬럼의 갯수가 4
row[0]=rs.getString("id");
row[1]=rs.getString("name");
row[2]=rs.getString("title");
row[3]=rs.getString("rdate");
model.addRow(row);
}
rs.close();
}
catch(Exception e1){
//e.getStackTrace();
System.out.println(e1.getMessage());
}
}
public static void main(String[] args) {
new BookRent();
}
}
'TIS_2020 > 빅데이터2020_1기' 카테고리의 다른 글
10/6 Haksa.java Student.java BookRent.java (0) | 2020.10.06 |
---|---|
10/5 Haksa.java , Student.java (0) | 2020.10.05 |
10/05 haksa (0) | 2020.10.05 |
10/05 oracle jdbc 기초 (0) | 2020.10.05 |
oracle jdbc select기초 (0) | 2020.09.29 |
Comments