일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 스카이 안드로이드폰 시리우스 K양 동영상
- 하루한마디영어
- 아이폰 바탕화면
- Form Stuff
- 안드로이드2.0개발
- 안드로이드 배경화면
- 인기있는 블로그 만들기
- 영어
- 안드로이드 바탕화면
- 안드로이드2.0
- 구글안드로이드
- objective-c
- 스카이 안드로이드폰 시리우스
- 스마트폰 배경화면
- 안드로이드 개발 2.0 강좌
- 안드로이드폰
- SKY 시리우스
- 안드로이드 개발 2.0
- 안드로이드
- android
- 안드로이드 개발 강좌
- sky 시리우스폰
- 구글 안드로이드
- 하루 한마디 영어
- 구글 안드로이드 개발
- 안드로이드 2.0 개발
- MapView
- 안드로이드개발
- 안드로이드 개발
- 아이폰 배경화면
- Today
- Total
목록TIS_2020/빅데이터2020_1기 (85)
moozi
movie
About NIKE English Brand Info sub sub sub sub Community sub sub sub Product Value sub sub Company History sub Best QualifiedAIR MAX 50/ 24
layout03
CSS 셀렉터 1. 태그 selector p { color:red; } h1 { color:blue; } 2. id selector #video { width:500px; } => id는 현재 페이지에서 unique하게 사용 3. class selector .title { color:red; } => 중복해서 사용 가능 4. grouping selector h1, p, span { color:red; } => 여러 selector를 동시에 적용 5. descendant selector 자손 셀렉터 p span{ color: red; } => 자손을 모두 찾는다 -------------------------------------------------------------------------- 6. chi..
create table student2( id char(7) primary key, name varchar2(10) not null, dept varchar2(20) not null ); insert into student2 values('C202001','이순신','컴퓨터공학과'); commit; select * from student2; create table books( no char(6) primary key, -- 책번호 title varchar(50) not null, -- 책이름 author varchar(50) not null -- 저자 ); insert into books values('000001','오라클기본','이황'); insert into books values('000002',..
Haksa, Student
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..
import java.awt.Container; import java.awt.Dimension; import java.awt.FlowLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.MouseEvent; import java.awt.event.MouseListener; import java.awt.event.WindowEvent; import java.awt.event.WindowListener; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.s..
import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.Statement; public class JDBC01 { public static void main(String[] args) { try { //oracle jdbc드라이버 로드 Class.forName("oracle.jdbc.driver.OracleDriver");// jdbc driver load //Connection Connection conn = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:myoracle","ora_user","hong");// 연..
import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.Statement; public class JDBC01 { public static void main(String[] args) { try { //oracle jdbc드라이버 로드 Class.forName("oracle.jdbc.driver.OracleDriver");// jdbc driver load //Connection Connection conn = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:myoracle","ora_user","hong");// 연..
import java.sql.Connection; import java.sql.DriverManager; public class JDBC01 { public static void main(String[] args) { try { //oracle jdbc드라이버 로드 Class.forName("oracle.jdbc.driver.OracleDriver");// jdbc driver load //Connection Connection conn = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:myoracle","ora_user","hong");// 연결 System.out.println("연결완료"); }catch(Exception e) { e...
오라클연습문제풀이
-- 직원의 부서명 구하기 select * from employees; select * from departments; -- inner join. oracle 문법 select employees.emp_name, departments.department_name from employees, departments where employees.department_id=departments.department_id; select e.emp_name, d.department_name from employees e, departments d where e.department_id=d.department_id; select e.emp_name, d.department_name from employees e, dep..
blog.naver.com/sedge04/100053618897 cubenuri.tistory.com/146
koreafrom.tistory.com/421#.X2mqBmgzY2x
select a.employee_id, a.emp_name, a.department_id, b.department_name from employees a inner join departments b on a.department_id=b.department_id;
create table student( id int, name varchar(20) ); insert into student values(12345,'홍길동'); select * from student; commit; -- rollback 취소 delete from student; select * from student; rollback; select * from student; drop table student; create table student( id int not null, name varchar2(50) not null, department varchar2(100) not null, address varchar2(200) not null ); select * from student; inser..
msvcr100.dll
import java.awt.Container; import java.awt.Dimension; import java.awt.FlowLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.JLabel; class MyListener1 implements ActionListener{ private JLabel label=null; @Override public void actionPerformed(ActionEvent e) { //EventEx.label.setText("버튼1이 클릭됨"..
import java.awt.Container; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JPanel; import javax.swing.JTabbedPane; public class TabbedPaneEx extends JFrame{ public TabbedPaneEx() { this.setTitle("탭"); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); Container c=this.getContentPane(); JTabbedPane pane=createTabbedPane(); c.add(pane); this.setSize(250, 250); this.setVi..
Haksa