<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet href="http://newkain.egloos.com/style/style_rss.xsl" type="text/xsl" media="screen"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
	<title>떵꺼리 &amp; 수샤</title>
	<link>http://newkain.egloos.com</link>
	<description>프로그래머 해우소</description>
	<language>ko</language>
	<pubDate>Thu, 12 Jun 2008 02:02:28 GMT</pubDate>
	<generator>Egloos</generator>
	<image>
		<title>떵꺼리 &amp; 수샤</title>
		<url>http://pds6.egloos.com/logo/200710/24/45/e0005145.jpg</url>
		<link>http://newkain.egloos.com</link>
		<width>80</width>
		<height>80</height>
		<description>프로그래머 해우소</description>
	</image>
  	<item>
		<title><![CDATA[ [JAVA JDBC] Procedure with Multi ResultSet ]]> </title>
		<link>http://newkain.egloos.com/1779771</link>
		<guid>http://newkain.egloos.com/1779771</guid>
		<description>
			<![CDATA[ 
  JAVA의 JDBC를 이용해 프로시저를 호출할 때 여러 결과셋(ResultSet)을 받고 싶을 때<br />
코드 예제입니다.<br />
<br />
<blockquote>--프로시저 내용<br />
CREATE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PROC 프로시저명<br />
AS<br />
<br />
SELECT *<br />
FROM 테이블 1<br />
WHERE 조건들...<br />
<br />
SELECT *<br />
FROM 테이블 2<br />
WHERE 조건...<br />
<br />
SELECT *<br />
FROM 테이블 3<br />
WHERE 조건들...<br />
GO</blockquote><br />
<br />
위와 같을 때 JAVA 코드는<br />
<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <blockquote>CallableStatement cs = null;<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; cs = con.prepareCall("{call 프로시저()}");<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ResultSet rs = cs.executeQuery();<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; while( rs.next() )<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; {<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; System.out.println(rs.getString(1));<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; System.out.println("-----------------------------");<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if( cs.getMoreResults() )<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; {<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; System.out.println("2개 이상의 ResultSet 존재함");<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; rs = cs.getResultSet();<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; while( rs.next() )<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; {<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; System.out.println(rs.getString(1));<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; rs.close();<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; else<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; {<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; System.out.println("ResultSet이 더이상 없습니다.");<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }</blockquote><br />
			 ]]> 
		</description>
		<category>미분류</category>
		<pubDate>Thu, 12 Jun 2008 02:01:39 GMT</pubDate>
		<dc:creator>떵꺼리</dc:creator>
	</item>
	<item>
		<title><![CDATA[ 응용 프로그램을 제대로 초기화하지 못했습니다.(0xc000007b) ]]> </title>
		<link>http://newkain.egloos.com/1702510</link>
		<guid>http://newkain.egloos.com/1702510</guid>
		<description>
			<![CDATA[ 
  최근에 사업부에서 간단한 이미지 처리 프로그램이 필요하다고 요청이 들어왔다.<br><br><strong>그래서 요즘 사용 안했던 가물가물해져가던&nbsp;C#을 사용해볼 겸 <br><br>체험판으로 설치한 VisualStudio 2008로 프로그램을 작성했다.</strong><br><br>몇가지 수정 사항을 반영하고 사업부에 전달했는데<br><br>이게 며칠 잘 사용하다가 아래와 같은 메세지가 뜨면서 사용할 수 없게 되어버렸다.<br><br><span style="COLOR: #ff0000"><strong>"응용 프로그램을 제대로 초기화하지 못했습니다.(0xc000007b)"<br><br></strong></span><span style="COLOR: #000000">구글 검색을 통해서 원인을 찾아보았다.<br><br>몇몇 영문 사이트에서 바이러스 감염 여부를 검사해보라는 글을 보고<br><br>네이버 PC 그린을 설치하여 치료해보았다.<br><br>하지만 바이러스나 웜이 검색되지 않았다.<br><br>혹시나 닷넷 프레임워크가 문제일지 몰라 닷넷 프레임워크를 다시 설치해보았다.<br><br>그런데 문제는 똑같았다.<br><br>간단하게 Hello World를 출력하는 프로그램을 돌려보았다.<br><br>이 간단한 프로그램 마져도<br><br><strong><span style="COLOR: #ff0000">"응용 프로그램을 제대로 초기화하지 못했습니다.(0xc000007b)"<br></span></strong>&nbsp;<br>메세지만 뿜어내고 있다.<br><br>정말 아무리봐도 저 메세지는 좌절과 패닉에 빠지게 만드는 성의없는 경고창인 것 같다. <br><br><strong><span style="COLOR: #3333ff">그래서 혹시&nbsp;몰라 Yahoo 툴바에서 제공하는 무료 바이러스를 설치해서 돌려보았다.<br></span></strong><br>어차피 툴바야 감춰놓으면 되니 귀찮아도&nbsp;백신마다 차이점이 있으니 이를&nbsp;이용해&nbsp;검색을 해본 것이다.<br><br>한참 검색을 진행하다가 드디어 바이러스/웜이 검색되었다. (기특한 녀석~~~)<br><br><span style="FONT-SIZE: 130%; COLOR: #ff0000"><strong>"Win32.Virut"</strong></span><br><br>치료를 끝냈으나<br><br>안타깝게도 C#으로 작성된 프로그램은 여전히 동작하지 않았다.<br><br><strong>아무래도 바이러스에 의해 손상된 듯 보인다.<br></strong><br>사업부에 다시&nbsp;재컴파일한 실행파일을 넘겨줌으로써 사건은 일단락되었다.<br><br></span>			 ]]> 
		</description>
		<category>미분류</category>
		<pubDate>Thu, 15 May 2008 01:58:20 GMT</pubDate>
		<dc:creator>떵꺼리</dc:creator>
	</item>
	<item>
		<title><![CDATA[ 이번 YTN 돌발영상 삭제 건과 침묵하는 기자(?)를 보면서... ]]> </title>
		<link>http://newkain.egloos.com/1499486</link>
		<guid>http://newkain.egloos.com/1499486</guid>
		<description>
			<![CDATA[ 
  아직 선진국은 멀었구나를 느낀다.<br />
<br />
꼭 박정희때나 전두환때로 돌아간 것 같다.<br />
<br />
<br />
청와대는 발생하지도 않은 일을 미리 예측하여 처리하시다니 <br />
<br />
영화 "<font size="2"><font face="'Gulim', 'Sans-serif'">&nbsp;</font></font><font size="2"><font face="'Gulim', 'Sans-serif'"> 마이너리티 리포트</font></font><font size="2"><font face="'Gulim', 'Sans-serif'">" </font></font>가 허구가 아니군.<br />
<br />
<br />
이래저래 유투브만 대박나겠군.<br />
<br />
국내 포탈이나 업체는 통제당해서 관련 동영상 삭제하게 될텐데<br />
<br />
참 슬프군. <br />
<br />
<br />
진실을 가리려는 권력때문에 앞으로 일반 웹 서비스는 <br />
<br />
성인 포르노 서비스처럼 해외에 서버를 두고 해야하는 걸까?<br />
<br />
이래저래 기분이 안좋군.<br />
<br />
<strong>&lt;마이너리티 리포트 버전&gt;</strong><br />
<object height="355" width="425"><embed src="http://www.youtube.com/v/hM_ir0Xk6mw&amp;rel=1&amp;border=0" type="application/x-shockwave-flash" wmode="transparent" height="355" width="425"></object><br />
<br />
<strong>X파일 버전 - 출처 : <a href="%3Cstrong%3E%C3%AC%C2%B6%C2%9C%C3%AC%C2%B2%C2%98%20:%20http://wasd.tistory.com/34%3C/strong%3E">http://wasd.tistory.com/34</a></strong><br />
<object type="application/x-shockwave-flash" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" align="middle" height="399" width="502"><param name="bgcolor" value="#000000"><embed src="http://flvs.daum.net/flvPlayer.swf?pwidth=502&amp;pheight=399&amp;vid=rkI_inkDtZI$" allowscriptaccess="always" type="application/x-shockwave-flash" allowfullscreen="true" bgcolor="#000000" height="399" width="502"></object><br />
			 ]]> 
		</description>
		<category>미분류</category>
		<pubDate>Sat, 08 Mar 2008 13:41:12 GMT</pubDate>
		<dc:creator>떵꺼리</dc:creator>
	</item>
	<item>
		<title><![CDATA[ 컴파일 언어와 스크립트 언어 혼용사용시 문법적 실수 ]]> </title>
		<link>http://newkain.egloos.com/1472394</link>
		<guid>http://newkain.egloos.com/1472394</guid>
		<description>
			<![CDATA[ 
  컴파일을 거치는 언어(C/C++, JAVA, C#...)와 스크립트 언어(Python)를 혼용해서 쓰다보니<br />
스크립트 언어에서 기초적인 문법적 오류를 간과시하여 한참이 되어서야 <br />
버그를 발견하였다.<br />
<br />
컴파일 언어야 컴파일시에 문법적 오류를 잡아주지만<br />
스크립트 언어는 실행시점에서야 나오니 <br />
앞으로 꼭 주의해서 코드를 작성해야 할 것 같다.<br />
<br />
<blockquote>import time<br />
<br />
a = 1<br />
if a == 1:<br />
&nbsp;&nbsp;&nbsp; print 'Hello World'<br />
else:<br />
&nbsp;&nbsp;&nbsp; <span style="font-weight: bold; color: rgb(255, 0, 0);">Time.sleep(5) #문법적으로 잘못된 부분</span><br />
</blockquote><br />
Python 스크립트에서 실제 a == 1일 경우는 아무 문제가 없다. <br />
혹 아주 정상적인 코드로 보인다.<br />
<br />
하지만 a == 1 이 아닌 경우가 발생하면 전혀 예상치 못한 에러(문법적)로 혼란에 빠진다.<br />
<br />
만약&nbsp; 컴파일을 거친다면 미리 문법적 오류를 알았을 것이다.<br />
문제의 부분은 <span style="font-weight: bold; color: rgb(51, 51, 255);">time.sleep(5)</span>로 고쳐야 한다.<br />
<br />
꼭 조심해야할 부분이다.<br />
			 ]]> 
		</description>
		<category>IT 일상</category>
		<pubDate>Fri, 29 Feb 2008 08:47:43 GMT</pubDate>
		<dc:creator>떵꺼리</dc:creator>
	</item>
	<item>
		<title><![CDATA[ 신규 프로젝트 시작 ]]> </title>
		<link>http://newkain.egloos.com/1435983</link>
		<guid>http://newkain.egloos.com/1435983</guid>
		<description>
			<![CDATA[ 
  입사하고 첫 신규 프로젝트를 진행하게 되었다.<br />
<br />
얼떨결에(팀장이 공석이라) PM이 되고 또 클라이언트 개발을 맡게 되었다. ( 관리와 개발을 동시에... )<br />
<br />
프로젝트 관리에 대해서 책을 몇 권 읽었지만 책 내용을 실전 프로젝트 팀에 <br />
<br />
써본 일이 없었는데 효과를 확인할 좋은 기회가 될 것 같다.<br />
<br />
참여인원은 총 5명. <br />
<br />
<a href="http://www.ypbooks.co.kr/ypbooks/WebHome/specdm/specdm.jsp?p_isbn=2376800032">애자일</a>스런 인원인 것 같다. ;)<br />
<br />
일단 몇 개만 도입해서 프로젝트를 진행할 예정이다.<br />
<br />
<ul><li><a href="http://www.ypbooks.co.kr/ypbooks/WebHome/specdm/specdm.jsp?p_isbn=2376800020">UserStory ( Index카드, 포스트잇, 화이트보드 )</a></li><li>이터레이션 개발 ( 1-2 주 단위 )</li><li><a href="http://www.ypbooks.co.kr/ypbooks/WebHome/specdm/specdm.jsp?p_isbn=2376800038">이터레이션 회고</a><br />
</li></ul>이렇게만 해도 너무 많은 것 같긴하다.<br />
<br />
너무 갑작스런 변화는 거센 반발에 부딪치니 조심스럽다.<br />
<br />
추가로 <br />
<ul><li><a href="http://subversion.tigris.org">버전관리</a></li><li>이슈관리</li></ul>이 두 가지도 백그라운드에서 지원해줄 것이다.<br />
<br />
암튼 프로젝트 진행하면서 에피소드를 간간히 올려보도록 하겠다.<br />
<br />
그리고 프로젝트 결과가 성공하든 실패하든 올려보도록 하겠다. <br />
<br />
ㅡㅜ<br />
			 ]]> 
		</description>
		<category>미분류</category>
		<pubDate>Tue, 19 Feb 2008 09:14:33 GMT</pubDate>
		<dc:creator>떵꺼리</dc:creator>
	</item>
	<item>
		<title><![CDATA[ 이클립스에서 Ant의 exec를 이용한 WIPI KTF 에뮬레이터 실행방법 ]]> </title>
		<link>http://newkain.egloos.com/1377834</link>
		<guid>http://newkain.egloos.com/1377834</guid>
		<description>
			<![CDATA[ 
  이클립스에서 Ant를 이용해서 아래와 같이 빌드스크립트 실행시<br />
<br />
<blockquote><font size="2">&lt;exec executable="cmd.exe" dir="</font><font size="2">실행할 명령어의 디렉토리</font><font size="2">" os="운영체제"&gt;<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &lt;arg line="/c SWIPIEmul_default.exe"/&gt;<br />
&nbsp;&lt;/exec&gt;</font></blockquote><br />
KTF WIPI 에뮬레이터의 도스창(디버그창)이 안뜨는 경우가 생겼다.<br />
<br />
이럴 경우 디버깅메세지를 확인할 수 없는데<br />
<br />
그럴 경우 간단하게 아래와 같이 start 명령어를 추가해주면 도스창이 열리며 에뮬레이터가 실행된다.<br />
<br />
<font size="2"><blockquote>&lt;exec executable="cmd.exe" dir="실행할 명령어의 디렉토리" os="운영체제"&gt;<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;arg line="/c <span style="font-weight: bold; color: rgb(255, 0, 0);">start</span><span style="color: rgb(255, 0, 0);"> </span>SWIPIEmul_default.exe"/&gt;<br />
&lt;/exec&gt;</blockquote></font><br />
			 ]]> 
		</description>
		<category>미분류</category>
		<pubDate>Mon, 04 Feb 2008 01:12:17 GMT</pubDate>
		<dc:creator>떵꺼리</dc:creator>
	</item>
	<item>
		<title><![CDATA[ "닦고 조이고 기름칠하자"를 개발자 버젼으로 바꿔보면... ]]> </title>
		<link>http://newkain.egloos.com/1326954</link>
		<guid>http://newkain.egloos.com/1326954</guid>
		<description>
			<![CDATA[ 
  자동차 정비소에 가면 흔히 볼 수 있는 문구이다.<br />
<br />
이것을 개발자버젼으로 바꿔봤다.<br />
<br />
<br />
<font size="6"><span style="font-weight: bold; color: rgb(0, 0, 153);"><blockquote>"설계하고 코딩하고 리팩토링하자"<br />
</blockquote></span></font><font size="6"><span style="font-weight: bold; color: rgb(0, 0, 153);"></span></font><br />
제대로 바꿨는지;;;<br />
<br />
<font size="6"><span style="font-weight: bold; color: rgb(0, 0, 153);"></span></font><font size="6"><span style="font-weight: bold; color: rgb(0, 0, 153);"></span></font>배우면 배울 수록 부족하다고 느끼는게 이 직업인것 같다.<br />
<br />
배움에 두려움도 커져간다.<br />
<br />
이럴 때 필요한게 XP에서 말하는 용기인것 같다.<br />
			 ]]> 
		</description>
		<category>미분류</category>
		<pubDate>Wed, 23 Jan 2008 05:37:22 GMT</pubDate>
		<dc:creator>떵꺼리</dc:creator>
	</item>
	<item>
		<title><![CDATA[ PHP 이중변수를 다른 언어로 구현 ? ]]> </title>
		<link>http://newkain.egloos.com/1268421</link>
		<guid>http://newkain.egloos.com/1268421</guid>
		<description>
			<![CDATA[ 
  오늘 점심시간에 PHP 언어의 이중변수에 대한 얘기가 있었다.<br />
(ASP에서 PHP의 이중변수 구현이 가능할까라는 내용의...)<br />
<br />
PHP 이중변수 코드는 아래와 같다.<br />
<br />
<blockquote>&lt;?<br />
&nbsp;&nbsp;&nbsp; $var1 = "TEST";<br />
&nbsp;&nbsp;&nbsp; $var2 = "var1";<br />
<br />
&nbsp;&nbsp;&nbsp; echo $$var2;<br />
?&gt;<br />
출력결과 : TEST<br />
</blockquote><br />
위 코드를 다른 언어로 어떻게 구현할까 생각하다 JAVA로 비슷하게 흉내내보았다.<br />
<br />
<blockquote>HashMap hashMap = new HashMap();<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br />
String var1 = "Test";<br />
hashMap.put("var1", var1);<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br />
String var2 = "var1";<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br />
System.out.println((String)hashMap.get(var2));</blockquote><br style="font-weight: bold; color: rgb(51, 51, 255);"><span style="font-weight: bold; color: rgb(51, 51, 255);">즉, PHP의 이중변수는 사전형태의 자료구조로 가능해지는 것 같다.</span><br style="font-weight: bold; color: rgb(51, 51, 255);"><span style="font-weight: bold; color: rgb(51, 51, 255);">(형변환은 따로 신경써야겠지만...)</span><br />
			 ]]> 
		</description>
		<category>미분류</category>
		<pubDate>Thu, 10 Jan 2008 04:51:12 GMT</pubDate>
		<dc:creator>떵꺼리</dc:creator>
	</item>
	<item>
		<title><![CDATA[ 대선이 끝나고 허탈, 허무한 마음을 구글 가젯과 함께... ]]> </title>
		<link>http://newkain.egloos.com/1170022</link>
		<guid>http://newkain.egloos.com/1170022</guid>
		<description>
			<![CDATA[ 
  대선이 끝났다.<br />
<br />
우여곡절이 많았지만 끝났다.<br />
<br />
원하는 후보가 안되어서 속상하다. <br />
<br />
그래서 그 허탈, 허무한 마음을 구글 가젯을 만들어서 달래본다.<br />
<br />
<strong>구글에 가젯 제출했는데 승인이 날려나 모르겠다.</strong><br />
<br />
가젯 URL : <br />
<strong><span style="color: rgb(0, 0, 153);">http://hosting.gmodules.com/ig/gadgets/file/104940977326538171727/mb_remain.xml</span></strong><br />
<br />
가젯 미리보기 <br />
<div style="text-align:center"><img class="image_mid" border="0" onmouseover="this.style.cursor='pointer'" alt="" src="http://pds7.egloos.com/pds/200712/21/45/e0005145_476b75c59ec35.png" width="500" height="210" onclick="Control.Modal.openDialog(this, event, 'http://pds7.egloos.com/pds/200712/21/45/e0005145_476b75c59ec35.png');" /></div><font style="font-weight: bold;" size="2">대선때문에 속상하셨던 분들은 추가해서 <br />
<br />
매일매일 보길 바란다. ;)</font><br />
			 ]]> 
		</description>
		<category>미분류</category>
		<pubDate>Fri, 21 Dec 2007 08:15:03 GMT</pubDate>
		<dc:creator>떵꺼리</dc:creator>
	</item>
	<item>
		<title><![CDATA[ 구글 차트 API를 AJAX와 같이 사용하기 ]]> </title>
		<link>http://newkain.egloos.com/1130558</link>
		<guid>http://newkain.egloos.com/1130558</guid>
		<description>
			<![CDATA[ 
  OpenApi를 이용하여 웹페이지를 제작중에 <a href="http://code.google.com/apis/chart/">구글에서 제공하는 Chart Api</a>를 이용해보려 했다.<br />
<br />
<p><code></code></p><blockquote><code>구글 차트 예제<br />
&lt;img src="http://chart.apis.google.com/chart?<br />
chs=200x125<br />
&amp;amp;chd=s:helloWorld<br />
&amp;amp;cht=lc<br />
&amp;amp;chxt=x,y<br />
&amp;amp;chxl=0:|Mar|Apr|May|June|July|1:||50+Kb</code><code>" <br />
alt="Sample chart" /&gt;<span style="font-family: 굴림;"><br />
</span></code></blockquote><code></code><p></p><br />
웹 페이지에서 버튼을 클릭하면 AJAX를 이용하여 <br />
Chart에 필요한 데이타를 받아와 현재 보고 있는 페이지에 DOM스크립트를 이용해서<br />
그래프나 차트를 동적으로 보여주려 했지만 이미지가 표시되지 않았다.<br />
<br />
웹페이지 코드<br />
<blockquote>&lt;div id="google_chart_box"&gt;&lt;/div&gt;<br />
</blockquote><br />
동작하지 않는 DOM 코드<br />
<blockquote>//동적으로 받아온 구글 Chart Api의 src<br />
var txtDoc &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; = newsRequest.responseText; <br />
<br />
var imgElement = document.createElement("img")<br />
imgElement.setAttribute("src", txtDoc);<br />
imgElement.setAttribute("alt", "스타의 활동 지수");<br />
<br />
var chartBox &nbsp;&nbsp;&nbsp; = document.getElementById("google_chart_box");<br />
<span style="font-weight: bold; color: rgb(204, 0, 0);">chartBox.appendChild(imgElement);</span></blockquote><br />
그래서 방법을 찾던 중에 해결책을 찾았다.<br />
아래와 같이 DOM코드를 작성하면 <span style="font-weight: bold;">구글 차트도 AJAX로 동적으로 보여지게 된다.</span><br />
<br />
변경된 DOM 코드<br />
<blockquote>var imgTag = "&lt;img src='" + txtDoc + "' /&gt;";<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br />
var chartBox &nbsp;&nbsp;&nbsp; = document.getElementById("google_chart_box");<br />
<span style="font-weight: bold; color: rgb(0, 0, 153);">chartBox.innerHTML = imgTag;</span><br />
</blockquote><br />
이걸 이용하면 실시간으로 차트를 보여줄 수 있어 너무 재미있다. ;)<br />
			 ]]> 
		</description>
		<category>미분류</category>
		<pubDate>Thu, 13 Dec 2007 04:35:39 GMT</pubDate>
		<dc:creator>떵꺼리</dc:creator>
	</item>
</channel>
</rss>
