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
- 스마트폰 배경화면
- sky 시리우스폰
- 안드로이드
- android
- MapView
- SKY 시리우스
- 인기있는 블로그 만들기
- 안드로이드 개발 2.0
- 안드로이드 바탕화면
- 안드로이드 개발 2.0 강좌
- Form Stuff
- 안드로이드폰
- 영어
- 안드로이드개발
- objective-c
- 안드로이드 2.0 개발
- 안드로이드2.0개발
- 구글 안드로이드 개발
- 하루 한마디 영어
- 안드로이드 개발
- 구글 안드로이드
- 스카이 안드로이드폰 시리우스 K양 동영상
- 안드로이드 배경화면
- 아이폰 배경화면
- 아이폰 바탕화면
- 하루한마디영어
- 스카이 안드로이드폰 시리우스
- 안드로이드2.0
- 구글안드로이드
- 안드로이드 개발 강좌
Archives
- Today
- Total
moozi
04/07 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; //sql문
public BookRent() {
query="select s.id, s.name, b.title, br.rdate "
+ "from student s, books b, bookrent br "
+ "where s.id=br.id and b.no=br.bookno";
try {
//DB연결
Class.forName("oracle.jdbc.driver.OracleDriver");
conn = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:xe", "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 student s, books b, bookrent br "
+ " where s.id=br.id and b.no=br.bookno";
JComboBox cb=(JComboBox)e.getSource(); //이벤트가 발생한 콤보박스 구하기
//동적쿼리
if(cb.getSelectedIndex()==0) {
//전체
query+=" order by s.id";
}else if(cb.getSelectedIndex()==1) {
//컴퓨터시스템
query+=" and s.dept='컴퓨터시스템' order by br.no";
}else if(cb.getSelectedIndex()==2) {
//멀티미디어
query+=" and s.dept='멀티미디어' order by br.no";
}else if(cb.getSelectedIndex()==3) {
//컴퓨터공학
query+=" and s.dept='컴퓨터공학' order by br.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);
}
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_2021 > 인공지능2021_1기' 카테고리의 다른 글
04/08 haksa3 (0) | 2021.04.08 |
---|---|
04/07 haksa3 (0) | 2021.04.07 |
04/07 haksa (0) | 2021.04.07 |
04/06 haksa (0) | 2021.04.06 |
oracle 연결 (0) | 2021.04.06 |
Comments