식별 관계, 비식별 관계는
Relationship의 속성 가운데 Indentifying, Non-Indentifying을 말하며,
부모 테이블과 자식 테이블을 Relation 맺으면
부모 테이블의 PK(Primary Key)가 자식 테이블의 PK겸, FK(Foreign Key)가 되게 됩니다.
Relationship의 속성이 Indentifying Type으로 되어 있을 때 이렇게 되며 , Default 입니다.
만일 Relationship의 속성을 Non-Indentifying Type으로 바꾸면,
자식 테이블의 FK가, PK가 아닌 일반 Column으로 세팅됩니다.
다시 정리하자면...
Indentifying Type(식별관계) : 부모 테이블의 PK = 자식 테이블의 PK, FK
Non-Indentifying Type(비식별관계) : 부모 테이블의 PK = 자식 테이블의 FK (PK는 아님)
'Programming' 카테고리의 다른 글
| ERWIN Indentifying Relationship 관계. (0) | 2011/07/14 |
|---|---|
| SNS 서비스 연동 스크립트 (0) | 2011/03/03 |
| Report 툴 관련 사이트 (0) | 2010/05/25 |
| 프로그래밍 공부하기 위해 알아두면 좋은 사이트??? (0) | 2010/05/12 |
아래의 상태표시줄에 경고가 보이지 않는다.
window.addEventListener 만 사용했을시 IE 브라우저 에서는 경고문구가 보여 신경쓰임.
if(window.attachEvent){ //IE인 경우
window.attachEvent("onload",function(){
setTimeout(scrollTo,0,0,1);
},false);
}
else{
window.addEventListener("load",function(){
setTimeout(scrollTo,0,0,1);
},false);
}
'Programming > JAVASCRIPT' 카테고리의 다른 글
| window.addEventListener 사용시.. (0) | 2011/07/08 |
|---|---|
| Core JavaScript 1.5 Reference.. (0) | 2010/09/29 |
| 무시 할 수 없는 자바스크립트 다시 공부하자. (0) | 2010/09/29 |
| 레이어 팝업 예제 (0) | 2010/09/07 |
| javascript 정리 문서. (0) | 2010/09/07 |
| 유용한 자바 스크립트 함수. (0) | 2010/08/13 |
안드로이드 블루투스 BlueTooth http://junho85.springnote.com/pages/6481569
목차
안드로이드 블루투스 BlueTooth#
블루투스#
http://developer.android.com/reference/android/bluetooth/package-descr.html
http://developer.android.com/reference/android/bluetooth/package-summary.html
Bluetooth ![]()
http://developer.android.com/guide/topics/wireless/bluetooth.html
이 문서를 열심히 공부해야 겠다!!!
http://gtko.springnote.com/pages/5396297
한글 번역 되어 있음
Manifest 에서 두가지 퍼미션을 허용해준다.
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.BLUETOOTH" />
안드로이드 블루투스로 할 수 있는 일?
RFCOMM?
이걸로 데이터 스트림을 주고 받는 듯 하다.
SDK에 BluetoothChat 이라는 예제가 있다. 확인해 보자.
http://developer.android.com/resources/samples/BluetoothChat/index.html
10 안드로이드 하드웨어 ![]()
http://gtko.springnote.com/pages/5396297
상당히 잘 정리 되어 있다.
G1(ADP1)에서 블루투스 사용하기 - 1, 2, 3
http://android.sirini.net/grblog/?p=2
http://android.sirini.net/grblog/?p=4
http://android.sirini.net/grblog/?p=5
예전 버전 G1에서 블루투스를 어떻게 구현해 보려고 애써 본 흔적인듯. 지금은 별 의미 없을 듯.
그나저나 내 G1은 블루투스가 잘 될까? CyanogenMod로 2.2 까지 업했고 2.2SDK 예제에 블루투스 관련 예제가 있는데 함께 테스트 해볼 기기가 없어 아직 못해봄.
다중 연결#
Android Bluetooth API connect to multiple devices at the same time
I wrote a test app about a week ago that connected to two separate serial devices simultaneously. It commanded both of them independently and the performance was awesome.
답변은 이게 끝. 되기는 되는가 보다.
TODO : 서버 하나 만들고 두대가 접속하기를 기다렸다가 두대가 접속하면 메시지 날려 주는 프로그램 하나 만들어 보자
안드로이드 블루투스 게임#
에어하키
galcon
[기타] 갤럭시S 블루투스 게임 컨트롤러 Zeemote
http://www.applclub.com/bbs/board.php?bo_table=B&wr_id=174210
UUID - Universally unique identifier#
범용 고유 번호 128비트 숫자들의 조합
Universally unique identifier
http://en.wikipedia.org/wiki/UUID
[블루투스]UUID (Universally Unique Identifiers)
http://www.cyworld.com/tizbeam/3986964
UUID (Universally Unique Identifiers)
http://zene.egloos.com/4973651
참고#
[android] 안드로이드 블루투스 데이터 통신 - bluetooth Socket communication
http://blog.naver.com/oh4zzang/40112145084
[android] 안드로이드 블루투스 연결 - bluetooth connectt (내용 추가)
http://blog.naver.com/oh4zzang/40111958220
[android] 안드로이드 Bluetooth UUID
http://blog.naver.com/oh4zzang/40111957130
'Programming > ANDROID' 카테고리의 다른 글
| 안드로이드 블루투스 BlueTooth (0) | 2011/05/06 |
|---|

Prev
Rss Feed