안드로이드 개발 준비

필요사항

JDK

Android SDK

eclipse IDE


1. JDK   SE  최신버전 설치

2. Android SDK 최신버전 설치

   SDK Setup에서 최신 플랫폼 다운로드 받기
    - install anyway

3. 최신 eclipse 설치
   Available Software 검색 설치
     - 위치 : http://dl-ssl.google.com/android/eclipse/
   eclipse restart
   환경설정에서 Android SDK 위치 설정


4. 가상디바이스 설정

  

.....

Posted by 태해

2010/03/04 12:54 2010/03/04 12:54
Response
No Trackback , No Comment
RSS :
http://taehae.injece.net/rss/response/144

Trackback URL : http://taehae.injece.net/trackback/144

Leave a comment

테이블 속성 검색

select a.name tabname,  b.colid, b.name colname,
  c.name + case when c.xprec = 0 then '('+ rtrim(convert(char, b.length))+')'
     else '('+ rtrim(convert(char, b.xprec)) + ',' + rtrim(convert( char, b.xscale)) + ')'
     end datatype,
  case when b.isnullable = 0  then 'N'
     else 'Y' end isnullable,
  d.keyno pkorder
from sysobjects a
  inner join  syscolumns b
  on (a.id = b.id)
  inner join systypes c
  on (b.xusertype = c.xusertype)
  left outer join dbo.sysindexkeys d
  on (b.id =d.id and b.colid = d.colid and indid =1)
where a.xtype = 'U'
and  b.name = 'bunban'
order by a.id, b.colid


Posted by 태해

2010/03/02 10:23 2010/03/02 10:23
Response
No Trackback , No Comment
RSS :
http://taehae.injece.net/rss/response/143

Trackback URL : http://taehae.injece.net/trackback/143

Leave a comment