[java5] Calendar Example - 년 월 일 시 분 초
- class CalendarExam {
- }
- }
'Computer_IT > JAVA' 카테고리의 다른 글
Eclipse - JAD Pluggin (0) | 2007.11.19 |
---|---|
[SWT] 기본적인 Hello Window (0) | 2007.08.13 |
[java] 인수로 주어진 파일에 대한 정보 출력 (0) | 2006.09.27 |
[JAVA] APPLET - ButtonEvent (0) | 2006.09.18 |
[JAVA] APPLET - Label 사용예제 (0) | 2006.09.18 |
[java] 인수로 주어진 파일에 대한 정보 출력
- public class FileInfo
- {
- {
- if(args.length!=1) {
- }
- if(infoFile.exists()) {
- } else {
- }
- }
- }
'Computer_IT > JAVA' 카테고리의 다른 글
[SWT] 기본적인 Hello Window (0) | 2007.08.13 |
---|---|
[java5] Calendar Example - 년 월 일 시 분 초 (0) | 2006.09.28 |
[JAVA] APPLET - ButtonEvent (0) | 2006.09.18 |
[JAVA] APPLET - Label 사용예제 (0) | 2006.09.18 |
[JAVA5] 방향키를 이용해 button 움직이기 (0) | 2006.09.14 |
[C] printf Type Field Characters
printf(%[flags] [width] [.precision] [{h | l | I64 | L}]type)
Character | Type | Output Format |
c | int or wint_t | When used with printf functions, specifies a single-byte character; when used with wprintf functions, specifies a wide character. |
C | int or wint_t | When used with printf functions, specifies a wide character; when used with wprintf functions, specifies a single-byte character. |
d | int | Signed decimal integer. |
i | int | Signed decimal integer. |
o | int | Unsigned octal integer. |
u | int | Unsigned decimal integer. |
x | int | Unsigned hexadecimal integer, using “abcdef.” |
X | int | Unsigned hexadecimal integer, using “ABCDEF.” |
e | double | Signed value having the form [ – ]d.dddd e [sign]ddd where d is a single decimal digit, dddd is one or more decimal digits, ddd is exactly three decimal digits, and sign is + or –. |
E | double | Identical to the e format except that E rather than e introduces the exponent. |
f | double | Signed value having the form [ – ]dddd.dddd, where dddd is one or more decimal digits. The number of digits before the decimal point depends on the magnitude of the number, and the number of digits after the decimal point depends on the requested precision. |
g | double | Signed value printed in f or e format, whichever is more compact for the given value and precision. The e format is used only when the exponent of the value is less than –4 or greater than or equal to the precision argument. Trailing zeros are truncated, and the decimal point appears only if one or more digits follow it. |
G | double | Identical to the g format, except that E, rather than e, introduces the exponent (where appropriate). |
n | Pointer to integer | Number of characters successfully written so far to the stream or buffer; this value is stored in the integer whose address is given as the argument. |
p | Pointer to void | Prints the address pointed to by the argument in the form xxxx:yyyy where xxxx is the segment and yyyy is the offset, and the digits x and y are uppercase hexadecimal digits. |
s | String | When used with printf functions, specifies a single-byte–character string; when used with wprintf functions, specifies a wide-character string. Characters are printed up to the first null character or until the precision value is reached. |
S | String | When used with printf functions, specifies a wide-character string; when used with wprintf functions, specifies a single-byte–character string. Characters are printed up to the first null character or until the precision value is reached. |
'Computer_IT > C++' 카테고리의 다른 글
[C] VC ConsoleWindows에서 DC를 이용해 마우스로 그림그리기 (0) | 2006.11.23 |
---|---|
[C] 전광판 소스... (0) | 2006.11.23 |
[C] Long Type의 Data형을 10진수에서 2진수로.. (0) | 2006.09.12 |
[VC] 인라인 ASM 으로 작성한 연산 (1) | 2006.08.14 |
[VC] MMX support 여부 (0) | 2006.08.14 |
[ASP] ASP ServerVariables Collection List....
- <b> ServerVariables 컬렉션 <b>전체참조</b><br>
- <table border=0 cellspacing=1 cellpadding=0 bgcolor=black>
- <% For Each key in Request.ServerVariables %>
- <tr bgcolor="white">
- <td align=center><%=key %></td>
- <td><%
- If Request.ServerVariables(key) = "" Then
- Response.Write " "
- else
- Response.Write Request.ServerVariables(key)
- end if %>
- </td>
- </tr>
- <% next %>
- </table>
ServerVariables 컬렉션 전체참조
ALL_HTTP | HTTP_ACCEPT:*/* HTTP_ACCEPT_LANGUAGE:ko HTTP_CONNECTION:Keep-Alive HTTP_HOST:localhost HTTP_USER_AGENT:Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) HTTP_COOKIE:ASPSESSIONIDAACTDBBR=JHJJFIEADMJHPCLKLIPJJCNC HTTP_ACCEPT_ENCODING:gzip, deflate |
ALL_RAW | Accept: */* Accept-Language: ko Connection: Keep-Alive Host: localhost User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) Cookie: ASPSESSIONIDAACTDBBR=JHJJFIEADMJHPCLKLIPJJCNC Accept-Encoding: gzip, deflate |
APPL_MD_PATH | /LM/W3SVC/1/ROOT |
APPL_PHYSICAL_PATH | d:\asp\ |
AUTH_PASSWORD | |
AUTH_TYPE | |
AUTH_USER | |
CERT_COOKIE | |
CERT_FLAGS | |
CERT_ISSUER | |
CERT_KEYSIZE | |
CERT_SECRETKEYSIZE | |
CERT_SERIALNUMBER | |
CERT_SERVER_ISSUER | |
CERT_SERVER_SUBJECT | |
CERT_SUBJECT | |
CONTENT_LENGTH | 0 |
CONTENT_TYPE | |
GATEWAY_INTERFACE | CGI/1.1 |
HTTPS | off |
HTTPS_KEYSIZE | |
HTTPS_SECRETKEYSIZE | |
HTTPS_SERVER_ISSUER | |
HTTPS_SERVER_SUBJECT | |
INSTANCE_ID | 1 |
INSTANCE_META_PATH | /LM/W3SVC/1 |
LOCAL_ADDR | 127.0.0.1 |
LOGON_USER | |
PATH_INFO | /servarvariables.asp |
PATH_TRANSLATED | d:\asp\servarvariables.asp |
QUERY_STRING | |
REMOTE_ADDR | 127.0.0.1 |
REMOTE_HOST | 127.0.0.1 |
REMOTE_USER | |
REQUEST_METHOD | GET |
SCRIPT_NAME | /servarvariables.asp |
SERVER_NAME | localhost |
SERVER_PORT | 80 |
SERVER_PORT_SECURE | 0 |
SERVER_PROTOCOL | HTTP/1.1 |
SERVER_SOFTWARE | Microsoft-IIS/5.1 |
URL | /servarvariables.asp |
HTTP_ACCEPT | */* |
HTTP_ACCEPT_LANGUAGE | ko |
HTTP_CONNECTION | Keep-Alive |
HTTP_HOST | localhost |
HTTP_USER_AGENT | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) |
HTTP_COOKIE | ASPSESSIONIDAACTDBBR=JHJJFIEADMJHPCLKLIPJJCNC |
HTTP_ACCEPT_ENCODING | gzip, deflate |
'Computer_IT > ASP' 카테고리의 다른 글
웹 개발 Debugging Tool (0) | 2007.12.30 |
---|---|
[ASP] FSBOARD 3.0 (0) | 2007.08.13 |
[VB] Visual Basic 6 - IDE에서 MouseWheel 사용
http://support.microsoft.com/?id=837910 접속후 다운로드
regsvr32 "C:\Program Files\Microsoft Visual Studio\VB98\VB6IDEMouseWheelAddin.dll" 입력!
'Computer_IT > VisualBasic' 카테고리의 다른 글
[VB] Access OLEDB & Access Passworld, 암호 설정되어있을시 연결문자열 (0) | 2006.12.09 |
---|---|
[VB] MSN Style Notification Messages 구현소스 (1) | 2006.11.08 |
[VB] 키보드의 대문자만 입력 (0) | 2006.09.12 |
[VB] Microsoft FlexGrid Control 6.0 Example (0) | 2006.09.12 |
[VB] 종료시 확인하기, Terminate 시 확인 (0) | 2006.09.12 |
[JAVA] APPLET - ButtonEvent
- import java.awt.*;
- import java.applet.*;
- import java.awt.event.*;
- {
- Label myLabel;
- Button myButton1, myButton2, myButton3;
- public void init()
- {
- myButton1.setLabel("C언어");
- myButton1.addActionListener(this);
- add(myButton1);
- myButton2.addActionListener(this);
- add(myButton2);
- myButton3.addActionListener(this);
- add(myButton3);
- myLabel.setText("버튼을 눌러주세요!");
- add(myLabel);
- }
- {
- if(e.getSource() == myButton1) {
- myLabel.setText("선택 : C언어");
- } else if(e.getSource()==myButton2) {
- myLabel.setText("선택 : C++언어");
- } else if(e.getSource()==myButton3) {
- myLabel.setText("선택 : 자바");
- }
- }
- }
'Computer_IT > JAVA' 카테고리의 다른 글
[java5] Calendar Example - 년 월 일 시 분 초 (0) | 2006.09.28 |
---|---|
[java] 인수로 주어진 파일에 대한 정보 출력 (0) | 2006.09.27 |
[JAVA] APPLET - Label 사용예제 (0) | 2006.09.18 |
[JAVA5] 방향키를 이용해 button 움직이기 (0) | 2006.09.14 |
[JAVA5] ActionEvent Example (0) | 2006.09.14 |
[JAVA] APPLET - Label 사용예제
- import java.awt.*;
- import java.applet.*;
- {
- Label myLabel1, myLabel2, myLabel3;
- public void init()
- {
- myLabel1.setText("Label 테스트 프로그램");
- add(myLabel1);
- }
- }
'Computer_IT > JAVA' 카테고리의 다른 글
[java] 인수로 주어진 파일에 대한 정보 출력 (0) | 2006.09.27 |
---|---|
[JAVA] APPLET - ButtonEvent (0) | 2006.09.18 |
[JAVA5] 방향키를 이용해 button 움직이기 (0) | 2006.09.14 |
[JAVA5] ActionEvent Example (0) | 2006.09.14 |
[JAVA] InetAddress (0) | 2006.09.14 |
[ORACLE] Oracle9i 실행계획 보기
필요한 스크립트
$ORACLE_HOME/rdbms/admin/utlxplan.sql 실행
set statement_id = 'lab1' for
select *
from emp
where empno = 7777;
, lpad(' ',2*level)||operation
||decode(id,0,' Cost = '||position)
||' '||options
||' '||object_name as "Query Plan"
from plan_table
where statement_id = 'lab1'
connect by prior id=parent_id
start with id=0;
결과
---------- --------------------------------------------
0 SELECT STATEMENT Cost =
'Computer_IT > DBMS' 카테고리의 다른 글
[ORACLE] 제어판->관리도구->불필요 서비스 삭제 (0) | 2007.03.13 |
---|---|
[Oracle] Cluster 구성 (0) | 2006.11.01 |
ORACLE USER KILL (0) | 2006.09.18 |
CBO (0) | 2006.08.07 |
Oracle® Database SQL Reference (0) | 2006.08.07 |
ORACLE USER KILL
locking된 user kill
ALTER SYSTEM KILL SESSION 'integer1, integer2'
- integer1 : V$SESSION 뷰에서 SID열값 (SID=Session ID)
- integer2 : V$SESSION 뷰에서 SERIAL# 열값
SID, SERIAL# 값 확인
SID SERIAL# USERNAME
---------- ---------- ------------------------------------------------------------
1 1
2 1
3 1
4 1
5 1
6 1
7 1
8 1
9 3 SYS
9 개의 행이 선택되었습니다.
KILL 뒤에는 PMON 이 뒤처리 과정을 거친다.
'Computer_IT > DBMS' 카테고리의 다른 글
[Oracle] Cluster 구성 (0) | 2006.11.01 |
---|---|
[ORACLE] Oracle9i 실행계획 보기 (0) | 2006.09.18 |
CBO (0) | 2006.08.07 |
Oracle® Database SQL Reference (0) | 2006.08.07 |
[MySQL] 사용자 추가 (0) | 2006.07.09 |
[JAVA5] 방향키를 이용해 button 움직이기
파일명 : KeyEvent1.java
- import java.awt.*;
- import java.awt.event.*;
- Button man;
- super(title);
- setLayout(null);
- this.setSize(200, 200);
- man.setBounds(100, 100, 40, 20);
- this.add(man);
- man.addKeyListener(new KeyHandler());
- }
- KeyEvent1 me = new KeyEvent1(" Key 이벤트 활용 ");
- me.setVisible(true);
- }
- int x=man.getX();
- int y=man.getY();
- if(direction.equals("Right")) x+=10;
- else if(direction.equals("Left")) x-=10;
- else if(direction.equals("Down")) y+=10;
- else if(direction.equals("Up")) y-=10;
- man.setLocation(x, y);
- }
- }
- }
'Computer_IT > JAVA' 카테고리의 다른 글
[JAVA] APPLET - ButtonEvent (0) | 2006.09.18 |
---|---|
[JAVA] APPLET - Label 사용예제 (0) | 2006.09.18 |
[JAVA5] ActionEvent Example (0) | 2006.09.14 |
[JAVA] InetAddress (0) | 2006.09.14 |
콘솔입력받아 배열에 넣기 (0) | 2006.04.16 |
[JAVA5] ActionEvent Example
파일명 : ActionEvent1.java
- import java.awt.*;
- import java.awt.event.*;
- TextField tf;
- super(title);
- // this는 Frame이면서, ActionListener 객체이다.
- tf.addActionListener(this);
- // 텍스트 필드를 프레임(this)에 추가한다.
- add(tf);
- }
- // 이벤트 소스가 TextField형 객체이면
- // 이벤트 소스를 가져온다.
- // 화면에 temp의 문자열 출력
- // temp의 내용을 지운다.
- temp.setText("");
- }
- }
- ActionEvent1 me = new ActionEvent1("액션 이벤트 처리");
- me.pack();
- me.setVisible(true);
- }
- }
'Computer_IT > JAVA' 카테고리의 다른 글
[JAVA] APPLET - Label 사용예제 (0) | 2006.09.18 |
---|---|
[JAVA5] 방향키를 이용해 button 움직이기 (0) | 2006.09.14 |
[JAVA] InetAddress (0) | 2006.09.14 |
콘솔입력받아 배열에 넣기 (0) | 2006.04.16 |
JAVA class 정의 (0) | 2006.04.12 |
[JAVA] InetAddress
- import java.net.*;
- class AddressTest {
- {
- try
- {
- + Address.getHostName() );
- + Address.getHostAddress() );
- + Address);
- for(int i=0; i<SW.length; i++)
- {
- }
- }
- {
- }
- }
- }
'Computer_IT > JAVA' 카테고리의 다른 글
[JAVA5] 방향키를 이용해 button 움직이기 (0) | 2006.09.14 |
---|---|
[JAVA5] ActionEvent Example (0) | 2006.09.14 |
콘솔입력받아 배열에 넣기 (0) | 2006.04.16 |
JAVA class 정의 (0) | 2006.04.12 |
JAVA에서 Console 문자열 입력받기 (0) | 2006.04.05 |
[C] Long Type의 Data형을 10진수에서 2진수로..
'Computer_IT > C++' 카테고리의 다른 글
[C] 전광판 소스... (0) | 2006.11.23 |
---|---|
[C] printf Type Field Characters (0) | 2006.09.26 |
[VC] 인라인 ASM 으로 작성한 연산 (1) | 2006.08.14 |
[VC] MMX support 여부 (0) | 2006.08.14 |
Example Program: A Simple Query (0) | 2006.08.07 |
[VB] 키보드의 대문자만 입력
- Private Sub Text1_KeyPress(KeyAscii As Integer)
- ' 대문자로만 입력받음
- KeyAscii = Asc(UCase(Chr(KeyAscii)))
- End Sub
'Computer_IT > VisualBasic' 카테고리의 다른 글
[VB] Access OLEDB & Access Passworld, 암호 설정되어있을시 연결문자열 (0) | 2006.12.09 |
---|---|
[VB] MSN Style Notification Messages 구현소스 (1) | 2006.11.08 |
[VB] Visual Basic 6 - IDE에서 MouseWheel 사용 (0) | 2006.09.19 |
[VB] Microsoft FlexGrid Control 6.0 Example (0) | 2006.09.12 |
[VB] 종료시 확인하기, Terminate 시 확인 (0) | 2006.09.12 |
[VB] Microsoft FlexGrid Control 6.0 Example
- Option Explicit
- Private Sub cmdAdd_Click()
- Dim Rc As Integer ' RowCount
- Dim Kor As Integer, Eng As Integer, Math As Integer, Tot As Integer
- Dim ave As Single
- If Trim(txtName) = "" Then
- MsgBox "이름을 입력해줄래??"
- Exit Sub
- End If
- Rc = FGrid1.Rows
- FGrid1.Rows = Rc + 1
- ' 입력값 계산
- Kor = Val(txtKor)
- Eng = Val(txtEng)
- Math = Val(txtMath)
- Tot = Kor + Eng + Math
- ave = Round(Tot / 3, 2) ' 반올림 소수 2째 자리
- ' Flex Grid 에 값 넣기..
- FGrid1.TextMatrix(Rc, 0) = txtName
- FGrid1.TextMatrix(Rc, 1) = txtKor
- FGrid1.TextMatrix(Rc, 2) = txtEng
- FGrid1.TextMatrix(Rc, 3) = txtMath
- FGrid1.TextMatrix(Rc, 4) = Tot
- FGrid1.TextMatrix(Rc, 5) = ave
- ' 입력값 공백으로...
- txtName = ""
- txtKor = ""
- txtEng = ""
- txtMath = ""
- txtName.SetFocus
- End Sub
- Private Sub Form_Load()
- FGrid1.Rows = 1
- End Sub
'Computer_IT > VisualBasic' 카테고리의 다른 글
[VB] Access OLEDB & Access Passworld, 암호 설정되어있을시 연결문자열 (0) | 2006.12.09 |
---|---|
[VB] MSN Style Notification Messages 구현소스 (1) | 2006.11.08 |
[VB] Visual Basic 6 - IDE에서 MouseWheel 사용 (0) | 2006.09.19 |
[VB] 키보드의 대문자만 입력 (0) | 2006.09.12 |
[VB] 종료시 확인하기, Terminate 시 확인 (0) | 2006.09.12 |
[VB] 종료시 확인하기, Terminate 시 확인
- Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
- Cancel = MsgBox("정말로 창을 닫으시겠습니까?", vbOKCancel + vbDefaultButton2, "프로그램 종료중")
- If Cancel = 1 Then
- End
- End If
- End Sub
'Computer_IT > VisualBasic' 카테고리의 다른 글
[VB] Access OLEDB & Access Passworld, 암호 설정되어있을시 연결문자열 (0) | 2006.12.09 |
---|---|
[VB] MSN Style Notification Messages 구현소스 (1) | 2006.11.08 |
[VB] Visual Basic 6 - IDE에서 MouseWheel 사용 (0) | 2006.09.19 |
[VB] 키보드의 대문자만 입력 (0) | 2006.09.12 |
[VB] Microsoft FlexGrid Control 6.0 Example (0) | 2006.09.12 |
HTTP 상태코드
상태클래스 | 상태코드 | 이유 프레이즈 |
Successful | 200 | OK |
201 | Created | |
202 | Accepted | |
204 | No Content | |
Redirection | 300 | Multiple Choices |
301 | Moved Permanently | |
302 | Moved Temporarily | |
304 | Not Modified | |
Client Error | 400 | Bad Request |
401 | Unauthorized | |
403 | Forbidden | |
404 | Not Found | |
Server Error | 500 | Internal Server Error |
501 | Not Implemented | |
502 | Bad Gateway | |
503 | Service Unavailable |
'Computer_IT > ErrorReport' 카테고리의 다른 글
[PHP] 세션 에러 1 (0) | 2006.08.06 |
---|
[VC] 인라인 ASM 으로 작성한 연산
- #include "stdio.h"
- // EAX, EBX, ECX, EDX : 32 bit
- // AX, BX, CX, DX : 16 bit
- // AH, AL, BH, BL, CH, CL, DH, DL : 8 bit
- void main()
- {
- int addvar, pointvar1=5, pointvar2;
- int *p=&pointvar1;
- int cur = 1;
- int test1 = 1, test2 = 10;
- __asm // 더하기 예제
- {
- MOV EAX, 10 // EAX = 10
- MOV EBX, 20 // EBX = 20
- ADD EAX, EBX // EAX += EBX
- MOV addvar, EAX // addvar = EAX
- }
- __asm // 빼기 예제
- {
- MOV EAX, 10 // EAX = 10
- MOV EBX, 20 // EBX = 20
- SUB EAX, EBX // EAX += EBX
- MOV addvar, EAX // addvar = EAX
- }
- __asm // 포인터 사용 예제
- {
- MOV EAX, 10 // EAX = 10
- MOV EBX, p // EBX = p
- ADD EAX, [EBX] // EAX += *EBX -> [EAX]는 EAX의 주소가 가르키는 값
- MOV pointvar2, EAX // pointvar2 = EAX
- }
- __asm // 비교분기 예제
- {
- CMP cur, 1 // if(cur==1)
- JE go1 // goto go1
- CMP cur, 2 // if(cur==2)
- JE go2 // goto go2
- go1:
- MOV EAX, cur // EAX = cur
- ADD EAX, 100 // EAX += 100
- MOV cur, EAX // cur = EAX
- go2:
- MOV EAX, cur // EAX = cur
- ADD EAX, 200 // EAX += 200
- MOV cur, EAX // cur = EAX
- }
- __asm // 증가 예제
- {
- MOV EAX, test1 // EAX = test1
- INC EAX // EAX++
- MOV test2, EAX // test2 = EAX
- }
- __asm // 감소 예제
- {
- MOV EAX, test1 // EAX = test1
- DEC EAX // EAX--
- MOV test2, EAX // test2 = EAX
- }
- __asm // 치환 예제
- {
- MOV EAX, test1 // EAX = test1
- MOV EBX, test2 // EBX = test2
- XCHG EAX, EBX // swap EAX, EBX
- MOV test1, EAX // test1 = EAX
- MOV test2, EBX // test2 = EBX
- }
- }
The Size of (int)=4 Byte
So, 32 Bit
SUB Test Result=-10
Pointer Test Result=15
Compare Test Result=301
test1=1, Increased test1=2
test1=1, decreased test1=0
After XCHG : test1=0, test2=1
'Computer_IT > C++' 카테고리의 다른 글
[C] printf Type Field Characters (0) | 2006.09.26 |
---|---|
[C] Long Type의 Data형을 10진수에서 2진수로.. (0) | 2006.09.12 |
[VC] MMX support 여부 (0) | 2006.08.14 |
Example Program: A Simple Query (0) | 2006.08.07 |
Const Member변수 초기화 특성 (0) | 2006.04.24 |
[VC] MMX support 여부
- #include "stdio.h"
- int detect_mmx(void)
- {
- int res, mmx;
- _asm {
- mov eax, 1;
- cpuid;
- mov res, edx;
- }
- mmx = (res & 0x00800000) ? 1 : 0;
- return mmx;
- }
- void main()
- {
- int Detected;
- Detected = detect_mmx(); // return 1이면 지원 0이면 미지원
- if(Detected)
- else
- }
CPU의 MMX지원 여부를 알수 있는 코드이다.
'Computer_IT > C++' 카테고리의 다른 글
[C] Long Type의 Data형을 10진수에서 2진수로.. (0) | 2006.09.12 |
---|---|
[VC] 인라인 ASM 으로 작성한 연산 (1) | 2006.08.14 |
Example Program: A Simple Query (0) | 2006.08.07 |
Const Member변수 초기화 특성 (0) | 2006.04.24 |
LinkedList 자료 (0) | 2006.04.06 |
CBO
Session altered.
SQL> set autotrace traceonly explain
SQL> select * from employees where department_id=40;
Execution Plan
----------------------------------------------------------
0 SELECT STATEMENT Optimizer=RULE
1 0 TABLE ACCESS (BY INDEX ROWID) OF 'EMPLOYEES'
2 1 INDEX (RANGE SCAN) OF 'EMP_DEPARTMENT_IX' (NON-UNIQUE)
SQL> set autotrace off
SQL> alter session set optimizer_mode=all_rows;
Session altered.
SQL> set autotrace traceonly explain
SQL> select * from employees where department_id=40;
Execution Plan
----------------------------------------------------------
0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=2 Card=3 Bytes=183)
1 0 TABLE ACCESS (BY INDEX ROWID) OF 'EMPLOYEES' (Cost=2 Card=3 Bytes=183)
2 1 INDEX (RANGE SCAN) OF 'EMP_DEPARTMENT_IX' (NON-UNIQUE) (Cost=1 Card=3)
CBO는 table에 통계정보..
Oracle 은 통계정보 만을 가지고 실행 정보를 작성하기 때문에
통계정보가 잘못되었ㅤ 경우에는 잘못된 실행정보를 생성한다.
몇달전에 Employees 행수가 얼마 많지 않은 상태에서 실행 계획을 작성한것을...
10배정도 데이터가 많아진 상태에서도 이전의 실행계획을 사용한것은 잘못되었음...
그러 경우다시 실행계획을 작성한것으로 적용하여야함...
'Computer_IT > DBMS' 카테고리의 다른 글
[Oracle] Cluster 구성 (0) | 2006.11.01 |
---|---|
[ORACLE] Oracle9i 실행계획 보기 (0) | 2006.09.18 |
ORACLE USER KILL (0) | 2006.09.18 |
Oracle® Database SQL Reference (0) | 2006.08.07 |
[MySQL] 사용자 추가 (0) | 2006.07.09 |
Example Program: A Simple Query
- /*
- * sample1.pc
- *
- * Prompts the user for an employee number,
- * then queries the emp table for the employee's
- * name, salary and commission. Uses indicator
- * variables (in an indicator struct) to determine
- * if the commission is NULL.
- *
- */
- #include <stdio.h>
- #include <string.h>
- /* Define constants for VARCHAR lengths. */
- #define UNAME_LEN 20
- #define PWD_LEN 40
- /* Declare variables.No declare section is needed if MODE=ORACLE.*/
- VARCHAR username[UNAME_LEN];
- /* VARCHAR is an Oracle-supplied struct */
- varchar password[PWD_LEN];
- /* varchar can be in lower case also. */
- /*
- Define a host structure for the output values of a SELECT statement.
- */
- struct {
- VARCHAR emp_name[UNAME_LEN];
- float salary;
- float commission;
- } emprec;
- /*
- Define an indicator struct to correspond to the host output struct. */
- struct
- {
- short emp_name_ind;
- short sal_ind;
- short comm_ind;
- } emprec_ind;
- /* Input host variable. */
- int emp_number;
- int total_queried;
- /* Include the SQL Communications Area.
- You can use #include or EXEC SQL INCLUDE. */
- #include <sqlca.h>
- /* Declare error handling function. */
- void sql_error();
- main()
- {
- char temp_char[32];
- /* Connect to ORACLE--
- * Copy the username into the VARCHAR.
- */
- strncpy((char *) username.arr, "SCOTT", UNAME_LEN);
- /* Set the length component of the VARCHAR. */
- username.len = strlen((char *) username.arr);
- /* Copy the password. */
- strncpy((char *) password.arr, "TIGER", PWD_LEN);
- password.len = strlen((char *) password.arr);
- /* Register sql_error() as the error handler. */
- EXEC SQL WHENEVER SQLERROR DO sql_error("ORACLE error--\n");
- /* Connect to ORACLE. Program will call sql_error()
- * if an error occurs when connecting to the default database.
- */
- EXEC SQL CONNECT :username IDENTIFIED BY :password;
- /* Loop, selecting individual employee's results */
- total_queried = 0;
- for (;;)
- {
- /* Break out of the inner loop when a
- * 1403 ("No data found") condition occurs.
- */
- EXEC SQL WHENEVER NOT FOUND DO break;
- for (;;)
- {
- emp_number = 0;
- gets(temp_char);
- emp_number = atoi(temp_char);
- if (emp_number == 0)
- break;
- EXEC SQL SELECT ename, sal, NVL(comm, 0)
- INTO :emprec INDICATOR :emprec_ind
- FROM EMP
- WHERE EMPNO = :emp_number;
- /* Print data. */
- /* Null-terminate the output string data. */
- emprec.emp_name.arr[emprec.emp_name.len] = '\0';
- emprec.emp_name.arr, emprec.salary);
- if (emprec_ind.comm_ind == -1)
- else
- total_queried++;
- } /* end inner for (;;) */
- if (emp_number == 0) break;
- } /* end outer for(;;) */
- /* Disconnect from ORACLE. */
- EXEC SQL COMMIT WORK RELEASE;
- exit(0);
- }
- void sql_error(msg)
- char *msg;
- {
- char err_msg[128];
- int buf_len, msg_len;
- EXEC SQL WHENEVER SQLERROR CONTINUE;
- buf_len = sizeof (err_msg);
- sqlglm(err_msg, &buf_len, &msg_len);
- EXEC SQL ROLLBACK RELEASE;
- exit(1);
- }
'Computer_IT > C++' 카테고리의 다른 글
[VC] 인라인 ASM 으로 작성한 연산 (1) | 2006.08.14 |
---|---|
[VC] MMX support 여부 (0) | 2006.08.14 |
Const Member변수 초기화 특성 (0) | 2006.04.24 |
LinkedList 자료 (0) | 2006.04.06 |
VC++ 단축키 모음 (2) | 2006.03.19 |
Oracle® Database SQL Reference
Oracle® Database SQL Reference 10g Release 1 (10.1)
'Computer_IT > DBMS' 카테고리의 다른 글
[Oracle] Cluster 구성 (0) | 2006.11.01 |
---|---|
[ORACLE] Oracle9i 실행계획 보기 (0) | 2006.09.18 |
ORACLE USER KILL (0) | 2006.09.18 |
CBO (0) | 2006.08.07 |
[MySQL] 사용자 추가 (0) | 2006.07.09 |
[PHP] 세션 에러 1
php 코딩시 <? session_start(); ?> 함수를 호출하기 이전엔 그 어떠한 내용도 먼저 실행 되면 안된다.
session_start를 처음에 실행하도록 한다.
'Computer_IT > ErrorReport' 카테고리의 다른 글
HTTP 상태코드 (0) | 2006.08.20 |
---|
CRM - Customer Relationship Management (고객관계관리)
기업이 고객과 관련된 내외부 자료를 분석·통합해 고객 중심 자원을 극대화하고 이를 토대로 고객특성에 맞게 마케팅 활동을 계획·지원·평가하는 과정이다.
CRM은 최근에 등장한 데이터베이스 마케팅(DB marketing)의 일대일 마케팅(One-to-One marketing), 관계마케팅(Relationship marketing)에서 진화한 요소들을 기반으로 등장하게 되었다.
고객데이터의 세분화를 실시하여 신규고객획득, 우수고객 유지, 고객가치증진, 잠재고객 활성화, 평생고객화와 같은 사이클을 통하여 고객을 적극적으로 관리하고 유도한다.
기존 마케팅이 단발적인 마케팅 전술이라면 CRM은 고객과의 지속적인 관계를 유지하면서 '한 번 고객은 평생고객'이 될수 있는 기회를 만들며, 평생고객화를 통해 고객의 가치를 극대화하는 것을 목표로, 고객의 정보, 즉 데이터베이스를 기초로 고객을 세부적으로 분류하여 효과적이고 효율적인 마케팅 전략을 개발하는 경영전반에 걸친 관리체계며, 이를 정보기술이 밑받침돼 구성된다.
CRM을 구현하기 위해서는 고객 통합 데이터베이스(DB)가 구축돼야 하고, 구축된 DB로 고객 특성(구매패턴·취향 등)을 분석하고 고객 개개인의 행동을 예측해 다양한 마케팅 채널과 연계돼야 한다.
과거 은행·증권 등 금융 오프라인 기업들이 컴퓨터응용기술로 가입자 신상명세, 거래내역 등을 데이터화해 콜센터를 구축하는 등에 많이 적용했으나 최근 회원관리가 생명인 닷컴기업들이 가입자 확보를 위해 서둘러 CRM을 도입하고 있다.
예를 들면, 기업은 관리계층이나 판매사원들이 서비스를 제공하기 위하여, 자기 고객들에 대한 관계를 설명해줄 수 있을만치 충분히 자세한 데이터베이스를 구축할 수 있을 것이며, 심지어 고객이 요구하는 제품계획과 매출을 부합시키고, 고객의 서비스 요구를 상기시키며, 그 고객이 다른 어떤 제품을 함께 구입했었는지 등을 알기 위해, 고객들이 그 정보에 직접 액세스할 수 있도록 할수도 있을 것이다.
산업계의 일각에 의하면, CRM은 다음과 같은 것들로 구성된다고 한다.
- 기업의 마케팅 부서에서, 자신들의 최고 고객을 식별해내고, 명확한 목표를 가지고 그들을 겨냥한 마케팅 캠페인을 추진할 수 있게 하며, 판매팀을 이끌기 위한 품질을 만들어내는데 도움을 준다.
- 다수의 직원들이 최적화된 정보를 공유하고, 기존의 처리절차를 간소화(예를 들어 무선 단말기를 사용하여 주문을 받는 등)함으로써, 통신판매, 회계 및 판매관리 등을 개선하기 위한 조직을 지원한다.
- 고객만족과 이익의 극대화를 꾀하고, 회사에 가장 도움이 되는 고객들을 식별해내며, 그들에게 최상의 서비스를 제공하는 등, 고객들마다 선별적인 관계의 형성을 허용한다.
- 고객에 관해 알아야하고, 고객들의 요구가 무엇인지를 이해하고, 회사와 고객기반 그리고 배송 파트너들과의 관계를 효과적으로 구축하기 위해 꼭 필요한 정보와 처리절차를 직원들에게 제공한다.
- 신규고객 획득, 기존고객 유지 및 고객 수익성을 증대시키기 위하여, 지속적인 커뮤니케이션을 통해 고객 행동을 이해하고, 영향을 주기 위한 광범위한 접근(가트너 그룹)
- 고객에 관한 지식을 지속적으로 듣고, 추출하고, 대응하는 일련의 프로세스들로서, CRM은 기업이 고객의 needs, 기대치 및 행동을 더 잘 이해하게 하고, 이를 통해 dynymical하게 사업기회나 변화에 대처할 수 있게 함(Meta Group)
- 기업이 고객을 발굴하고, 선정하고, 획득하고, 개발하고, 유지하는 모든 비즈니스 프로세스(IBM)
[MySQL] 사용자 추가
INSERT INTO user VALUES('localhost','아이디',PASSWORD('비밀번호'),'Y','Y', 'Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y');
FLUSH PRIVILEGES;
select * from user;
MySQL 사용자 추가
'Computer_IT > DBMS' 카테고리의 다른 글
[Oracle] Cluster 구성 (0) | 2006.11.01 |
---|---|
[ORACLE] Oracle9i 실행계획 보기 (0) | 2006.09.18 |
ORACLE USER KILL (0) | 2006.09.18 |
CBO (0) | 2006.08.07 |
Oracle® Database SQL Reference (0) | 2006.08.07 |
[MSDN] XMLHttpRequest
'Computer_IT > Ajax' 카테고리의 다른 글
WEB 개발용 Debugging Tools (0) | 2008.03.18 |
---|---|
JAVASCRIPT 10분 DOM 강좌 (0) | 2008.03.09 |
[JAVASCRIPT] 입력Form ToolTip 샘플 (0) | 2006.10.01 |
[DOM] Accesskey를 이용해 Focus설정 (0) | 2006.06.29 |
CSS Properties Reference... (0) | 2006.06.29 |
[JAVASCRIPT] 해상도 설정 보기
<body>
<script type="text/javascript">
document.write("해상도 : ")
document.write(screen.width + "*" + screen.height)
document.write("<br />")
document.write("보기 가능영역 : ")
document.write(screen.availWidth + "*" + screen.availHeight)
document.write("<br />")
document.write("색상 : ")
document.write(screen.colorDepth)
document.write("<br />")
document.write("버퍼 : ")
document.write(screen.bufferDepth)
document.write("<br />")
document.write("XDPI : ")
document.write(screen.deviceXDPI)
document.write("<br />")
document.write("YDPI : ")
document.write(screen.deviceYDPI)
document.write("<br />")
document.write("LogicalXDPI: ")
document.write(screen.logicalXDPI)
document.write("<br />")
document.write("LogicalYDPI: ")
document.write(screen.logicalYDPI)
document.write("<br />")
document.write("FontSmoothingEnabled: ")
document.write(screen.fontSmoothingEnabled)
document.write("<br />")
document.write("PixelDepth: ")
document.write(screen.pixelDepth)
document.write("<br />")
document.write("UpdateInterval: ")
document.write(screen.updateInterval)
document.write("<br />")
document.write("Window X position : ")
document.write(window.screenLeft)
document.write("<br />")
document.write("Window Y position : ")
document.write(window.screenTop)
document.write("<br />")
</script>
</body>
</html>
'Computer_IT > PHP' 카테고리의 다른 글
Fatal error: Class 'SoapClient' not found (0) | 2010.11.08 |
---|---|
[javascript] 1초마다 시간 출력 (1) | 2006.09.29 |
외부 CSS파일 불러오기 (0) | 2006.06.29 |
[DOM] Accesskey를 이용해 Focus설정
<head>
<script type="text/javascript">
function access()
{
document.getElementById('myAnchor').accessKey="a"
}
</script>
</head>
<body onload="access()">
<p><a id="myAnchor" href=http://sarangsai.com>sarangsai</a></p>
<p>ALT+'A' 키를 누르면 포커스가 링크로 이동</p>
</body>
</html>
'Computer_IT > Ajax' 카테고리의 다른 글
WEB 개발용 Debugging Tools (0) | 2008.03.18 |
---|---|
JAVASCRIPT 10분 DOM 강좌 (0) | 2008.03.09 |
[JAVASCRIPT] 입력Form ToolTip 샘플 (0) | 2006.10.01 |
[MSDN] XMLHttpRequest (0) | 2006.06.30 |
CSS Properties Reference... (0) | 2006.06.29 |
CSS Properties Reference...
Browser support: IE: Internet Explorer, F: Firefox, N: Netscape.
W3C: The number in the "W3C" column indicates in which CSS recommendation the property is defined (CSS1 or CSS2).
BACKGROUND
Property | Description | Values | IE | F | N | W3C |
---|---|---|---|---|---|---|
background | A shorthand property for setting all background properties in one declaration | background-color background-image background-repeat background-attachment background-position | 4 | 1 | 6 | 1 |
background-attachment | Sets whether a background image is fixed or scrolls with the rest of the page | scroll fixed | 4 | 1 | 6 | 1 |
background-color | Sets the background color of an element | color-rgb color-hex color-name transparent | 4 | 1 | 4 | 1 |
background-image | Sets an image as the background | url none | 4 | 1 | 4 | 1 |
background-position | Sets the starting position of a background image | top left top center top right center left center center center right bottom left bottom center bottom right x-% y-% x-pos y-pos | 4 | 1 | 6 | 1 |
background-repeat | Sets if/how a background image will be repeated | repeat repeat-x repeat-y no-repeat | 4 | 1 | 4 | 1 |
TEXT
Property | Description | Values | IE | F | N | W3C |
---|---|---|---|---|---|---|
color | Sets the color of a text | color | 3 | 1 | 4 | 1 |
direction | Sets the text direction | ltr rtl | 6 | 1 | 6 | 2 |
letter-spacing | Increase or decrease the space between characters | normal length | 4 | 1 | 6 | 1 |
text-align | Aligns the text in an element | left right center justify | 4 | 1 | 4 | 1 |
text-decoration | Adds decoration to text | none underline overline line-through blink | 4 | 1 | 4 | 1 |
text-indent | Indents the first line of text in an element | length % | 4 | 1 | 4 | 1 |
text-shadow | none color length | |||||
text-transform | Controls the letters in an element | none capitalize uppercase lowercase | 4 | 1 | 4 | 1 |
unicode-bidi | normal embed bidi-override | 5 | 2 | |||
white-space | Sets how white space inside an element is handled | normal pre nowrap | 5 | 1 | 4 | 1 |
word-spacing | Increase or decrease the space between words | normal length | 6 | 1 | 6 | 1 |
FONT
Property | Description | Values | IE | F | N | W3C |
---|---|---|---|---|---|---|
font | A shorthand property for setting all of the properties for a font in one declaration | font-style font-variant font-weight font-size/line-height font-family caption icon menu message-box small-caption status-bar | 4 | 1 | 4 | 1 |
font-family | A prioritized list of font family names and/or generic family names for an element | family-name generic-family | 3 | 1 | 4 | 1 |
font-size | Sets the size of a font | xx-small x-small small medium large x-large xx-large smaller larger length % | 3 | 1 | 4 | 1 |
font-size-adjust | Specifies an aspect value for an element that will preserve the x-height of the first-choice font | none number | - | - | - | 2 |
font-stretch | Condenses or expands the current font-family | normal wider narrower ultra-condensed extra-condensed condensed semi-condensed semi-expanded expanded extra-expanded ultra-expanded | - | - | - | 2 |
font-style | Sets the style of the font | normal italic oblique | 4 | 1 | 4 | 1 |
font-variant | Displays text in a small-caps font or a normal font | normal small-caps | 4 | 1 | 6 | 1 |
font-weight | Sets the weight of a font | normal bold bolder lighter 100 200 300 400 500 600 700 800 900 | 4 | 1 | 4 | 1 |
BORDER
Property | Description | Values | IE | F | N | W3C |
---|---|---|---|---|---|---|
border | A shorthand property for setting all of the properties for the four borders in one declaration | border-width border-style border-color | 4 | 1 | 4 | 1 |
border-bottom | A shorthand property for setting all of the properties for the bottom border in one declaration | border-bottom-width border-style border-color | 4 | 1 | 6 | 1 |
border-bottom-color | Sets the color of the bottom border | border-color | 4 | 1 | 6 | 2 |
border-bottom-style | Sets the style of the bottom border | border-style | 4 | 1 | 6 | 2 |
border-bottom-width | Sets the width of the bottom border | thin medium thick length | 4 | 1 | 4 | 1 |
border-color | Sets the color of the four borders, can have from one to four colors | color | 4 | 1 | 6 | 1 |
border-left | A shorthand property for setting all of the properties for the left border in one declaration | border-left-width border-style border-color | 4 | 1 | 6 | 1 |
border-left-color | Sets the color of the left border | border-color | 4 | 1 | 6 | 2 |
border-left-style | Sets the style of the left border | border-style | 4 | 1 | 6 | 2 |
border-left-width | Sets the width of the left border | thin medium thick length | 4 | 1 | 4 | 1 |
border-right | A shorthand property for setting all of the properties for the right border in one declaration | border-right-width border-style border-color | 4 | 1 | 6 | 1 |
border-right-color | Sets the color of the right border | border-color | 4 | 1 | 6 | 2 |
border-right-style | Sets the style of the right border | border-style | 4 | 1 | 6 | 2 |
border-right-width | Sets the width of the right border | thin medium thick length | 4 | 1 | 4 | 1 |
border-style | Sets the style of the four borders, can have from one to four styles | none hidden dotted dashed solid double groove ridge inset outset | 4 | 1 | 6 | 1 |
border-top | A shorthand property for setting all of the properties for the top border in one declaration | border-top-width border-style border-color | 4 | 1 | 6 | 1 |
border-top-color | Sets the color of the top border | border-color | 4 | 1 | 6 | 2 |
border-top-style | Sets the style of the top border | border-style | 4 | 1 | 6 | 2 |
border-top-width | Sets the width of the top border | thin medium thick length | 4 | 1 | 4 | 1 |
border-width | A shorthand property for setting the width of the four borders in one declaration, can have from one to four values | thin medium thick length | 4 | 1 | 4 | 1 |
MARGIN
Property | Description | Values | IE | F | N | W3C |
---|---|---|---|---|---|---|
margin | A shorthand property for setting the margin properties in one declaration | margin-top margin-right margin-bottom margin-left | 4 | 1 | 4 | 1 |
Sets the bottom margin of an element | auto length % | 4 | 1 | 4 | 1 | |
Sets the left margin of an element | auto length % | 3 | 1 | 4 | 1 | |
Sets the right margin of an element | auto length % | 3 | 1 | 4 | 1 | |
margin-top | Sets the top margin of an element | auto length % | 3 | 1 | 4 | 1 |
PADDING
Property | Description | Values | IE | F | N | W3C |
---|---|---|---|---|---|---|
padding | A shorthand property for setting all of the padding properties in one declaration | padding-top padding-right padding-bottom padding-left | 4 | 1 | 4 | 1 |
Sets the bottom padding of an element | length % | 4 | 1 | 4 | 1 | |
Sets the left padding of an element | length % | 4 | 1 | 4 | 1 | |
Sets the right padding of an element | length % | 4 | 1 | 4 | 1 | |
padding-top | Sets the top padding of an element | length % | 4 | 1 | 4 | 1 |
LIST
Property | Description | Values | IE | F | N | W3C |
---|---|---|---|---|---|---|
list-style | A shorthand property for setting all of the properties for a list in one declaration | list-style-type list-style-position list-style-image | 4 | 1 | 6 | 1 |
list-style-image | Sets an image as the list-item marker | none url | 4 | 1 | 6 | 1 |
list-style-position | Sets where the list-item marker is placed in the list | inside outside | 4 | 1 | 6 | 1 |
list-style-type | Sets the type of the list-item marker | none disc circle square decimal decimal-leading-zero lower-roman upper-roman lower-alpha upper-alpha lower-greek lower-latin upper-latin hebrew armenian georgian cjk-ideographic hiragana katakana hiragana-iroha katakana-iroha | 4 | 1 | 4 | 1 |
marker-offset | auto length | 1 | 7 | 2 |
Dimension
Property | Description | Values | IE | F | N | W3C |
---|---|---|---|---|---|---|
height | Sets the height of an element | auto length % | 4 | 1 | 6 | 1 |
line-height | Sets the distance between lines | normal number length % | 4 | 1 | 4 | 1 |
max-height | Sets the maximum height of an element | none length % | - | 1 | 6 | 2 |
max-width | Sets the maximum width of an element | none length % | - | 1 | 6 | 2 |
min-height | Sets the minimum height of an element | length % | - | 1 | 6 | 2 |
min-width | Sets the minimum width of an element | length % | - | 1 | 6 | 2 |
width | Sets the width of an element | auto % length | 4 | 1 | 4 | 1 |
Classification
Property | Description | Values | IE | F | N | W3C |
---|---|---|---|---|---|---|
clear | Sets the sides of an element where other floating elements are not allowed | left right both none | 4 | 1 | 4 | 1 |
cursor | Specifies the type of cursor to be displayed | url auto crosshair default pointer move e-resize ne-resize nw-resize n-resize se-resize sw-resize s-resize w-resize text wait help | 4 | 1 | 6 | 2 |
display | Sets how/if an element is displayed | none inline block list-item run-in compact marker table inline-table table-row-group table-header-group table-footer-group table-row table-column-group table-column table-cell table-caption | 4 | 1 | 4 | 1 |
float | Sets where an image or a text will appear in another element | left right none | 4 | 1 | 4 | 1 |
position | Places an element in a static, relative, absolute or fixed position | static relative absolute fixed | 4 | 1 | 4 | 2 |
visibility | Sets if an element should be visible or invisible | visible hidden collapse | 4 | 1 | 6 | 2 |
Positioning
Property | Description | Values | IE | F | N | W3C |
---|---|---|---|---|---|---|
bottom | Sets how far the bottom edge of an element is above/below the bottom edge of the parent element | auto % length | 5 | 1 | 6 | 2 |
clip | Sets the shape of an element. The element is clipped into this shape, and displayed | shape auto | 4 | 1 | 6 | 2 |
left | Sets how far the left edge of an element is to the right/left of the left edge of the parent element | auto % length | 4 | 1 | 4 | 2 |
overflow | Sets what happens if the content of an element overflow its area | visible hidden scroll auto | 4 | 1 | 6 | 2 |
position | Places an element in a static, relative, absolute or fixed position | static relative absolute fixed | 4 | 1 | 4 | 2 |
right | Sets how far the right edge of an element is to the left/right of the right edge of the parent element | auto % length | 5 | 1 | 6 | 2 |
top | Sets how far the top edge of an element is above/below the top edge of the parent element | auto % length | 4 | 1 | 4 | 2 |
vertical-align | Sets the vertical alignment of an element | baseline sub super top text-top middle bottom text-bottom length % | 4 | 1 | 4 | 1 |
z-index | Sets the stack order of an element | auto number | 4 | 1 | 6 | 2 |
Pseudo-classes
Pseudo-class | Purpose | IE | F | N | W3C |
---|---|---|---|---|---|
:active | Adds special style to an activated element | 4 | 1 | 8 | 1 |
:focus | Adds special style to an element while the element has focus | - | - | - | 2 |
:hover | Adds special style to an element when you mouse over it | 4 | 1 | 7 | 1 |
:link | Adds special style to an unvisited link | 3 | 1 | 4 | 1 |
:visited | Adds special style to a visited link | 3 | 1 | 4 | 1 |
:first-child | Adds special style to an element that is the first child of some other element | 1 | 7 | 2 | |
:lang | Allows the author to specify a language to use in a specified element | 1 | 8 | 2 |
Pseudo-elements
Pseudo-element | Purpose | IE | F | N | W3C |
---|---|---|---|---|---|
:first-letter | Adds special style to the first letter of a text | 5 | 1 | 8 | 1 |
:first-line | Adds special style to the first line of a text | 5 | 1 | 8 | 1 |
:before | Inserts some content before an element | 1.5 | 8 | 2 | |
:after | Inserts some content after an element | 1.5 | 8 | 2 |
Different Media Types
Media Type | Description |
---|---|
all | Used for all media type devices |
aural | Used for speech and sound synthesizers |
braille | Used for braille tactile feedback devices |
embossed | Used for paged braille printers |
handheld | Used for small or handheld devices |
Used for printers | |
projection | Used for projected presentations, like slides |
screen | Used for computer screens |
tty | Used for media using a fixed-pitch character grid, like teletypes and terminals |
tv | Used for television-type devices |
'Computer_IT > Ajax' 카테고리의 다른 글
WEB 개발용 Debugging Tools (0) | 2008.03.18 |
---|---|
JAVASCRIPT 10분 DOM 강좌 (0) | 2008.03.09 |
[JAVASCRIPT] 입력Form ToolTip 샘플 (0) | 2006.10.01 |
[MSDN] XMLHttpRequest (0) | 2006.06.30 |
[DOM] Accesskey를 이용해 Focus설정 (0) | 2006.06.29 |
외부 CSS파일 불러오기
<link rel="stylesheet" type="text/css" href="파일이름.css" />
</head>
'Computer_IT > PHP' 카테고리의 다른 글
Fatal error: Class 'SoapClient' not found (0) | 2010.11.08 |
---|---|
[javascript] 1초마다 시간 출력 (1) | 2006.09.29 |
[JAVASCRIPT] 해상도 설정 보기 (0) | 2006.06.29 |