<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://valley.egloos.com/rss/style/style.xsl" type="text/xsl" media="screen"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title>이글루스 'args' 태그 최근글</title>
		<link>http://valley.egloos.com/tag/args</link>
		<description>args</description>
		<language>ko</language>
		<pubDate>Mon, 02 Apr 2012 16:44:47 +0900</pubDate>
		<generator>Egloos</generator>
		<item>
	<title><![CDATA[OracleConnectionPool 을 이용하여 Select 만들어보기]]></title>
	<link>http://guitarhyo.egloos.com/565936</link>
	<guid>http://guitarhyo.egloos.com/565936</guid>
	<description>
	<![CDATA[ 
import java.sql.Connection;import java.sql.DriverManager;import java.sql.PreparedStatement;import java.sql.ResultSet;import java.sql.SQLException;import java.sql.Statement;import java.util.Properties;  import oracle.jdbc.driver.OracleDriver;    // 전에 select한 부분과 비교하여 생각해보자 무엇이 달라졌는지public class SelectJDBC {  	public static void main(String[] args)throws Exception {	//DB에 로그인하기 위한 접속정보 선언//		String	]]>
	</description>
	<pubDate>Mon, 02 Apr 2012 16:44:47 +0900</pubDate>
	<dc:creator><![CDATA[햄볶은느낌]]></dc:creator>
</item>
<item>
	<title><![CDATA[OracleConnectionPool클래스 사용해보기(1)]]></title>
	<link>http://guitarhyo.egloos.com/565930</link>
	<guid>http://guitarhyo.egloos.com/565930</guid>
	<description>
	<![CDATA[ 
//OracleConnectionPool  클래스를 분석한다 //커넥션을 일일히 하기 힘들기때문에 한번에 모아놓은 공간이라고 생각하자.import java.sql.*;import oracle.jdbc.pool.*;/- * Oracle API에서 제공하는 connectionPool기능을 제공하는 *OracleConnectionCacheImpl.class을 이용하여 Connection pool을 만들어보자.* &amp;lt;&amp;lt; Singleton pattern을 이용하자. &amp;gt;&amp;gt;*-public class OracleConnectionPool {	/// Field	//==&amp;gt;singleTon pattern 규칙 1 : 자신의 객체를 static으로 선언	private static OracleConnect	]]>
	</description>
	<pubDate>Mon, 02 Apr 2012 16:40:59 +0900</pubDate>
	<dc:creator><![CDATA[햄볶은느낌]]></dc:creator>
</item>
<item>
	<title><![CDATA[JCBC 를 이용하여 Select 하기]]></title>
	<link>http://guitarhyo.egloos.com/565928</link>
	<guid>http://guitarhyo.egloos.com/565928</guid>
	<description>
	<![CDATA[ 
mport java.sql.Connection;import java.sql.DriverManager;import java.sql.PreparedStatement;import java.sql.ResultSet;import java.sql.SQLException;import java.sql.Statement;import java.util.Properties;  import oracle.jdbc.driver.OracleDriver;  public class SelectJDBC {  		public static void main(String[] args)throws Exception {	//DB에 로그인하기 위한 접속정보 선언		String url = &quot;jdbc:oracle:thin:@127.0.0.1:1521:x	]]>
	</description>
	<pubDate>Mon, 02 Apr 2012 16:36:11 +0900</pubDate>
	<dc:creator><![CDATA[햄볶은느낌]]></dc:creator>
</item>
<item>
	<title><![CDATA[JDBC 를 이용하여 Delete 하기]]></title>
	<link>http://guitarhyo.egloos.com/565924</link>
	<guid>http://guitarhyo.egloos.com/565924</guid>
	<description>
	<![CDATA[ 
import java.sql.*;  //args 를 이용하여 id 값에대한 row 지우기public class  DeleteJDBC{    ///Field    ///Constructor    ///Method    ///Main method    	public static void main(String[] args) throws Exception{				String url = &quot;jdbc:oracle:thin:@127.0.0.1:1521:xe&quot;;		String driver = &quot;oracle.jdbc.driver.OracleDriver&quot;;  		Class.forName (driver);		Connection con = DriverManager.getConnection(url,&quot;scott&quot;,&quot;tiger&quot;);			]]>
	</description>
	<pubDate>Mon, 02 Apr 2012 16:32:18 +0900</pubDate>
	<dc:creator><![CDATA[햄볶은느낌]]></dc:creator>
</item>
<item>
	<title><![CDATA[JDBC 로 insert 하기]]></title>
	<link>http://guitarhyo.egloos.com/565918</link>
	<guid>http://guitarhyo.egloos.com/565918</guid>
	<description>
	<![CDATA[ 
import java.sql.*;  // args 인자값을 받아 insert 하기// PreparedStatement  를 이용하여 만들기public class  InsertJDBC{    ///Field    ///Constructor    ///Method    ///Main method    	public static void main(String[] args) throws Exception{		if(args.length != 3){			System.out.println(&quot;no 값 id 값 pwd 값 입력해야해&quot;);			System.exit(1);		}				int no = Integer.parseInt(args[0]);		String id = args[1];		String pwd = args[2];		]]>
	</description>
	<pubDate>Mon, 02 Apr 2012 16:28:05 +0900</pubDate>
	<dc:creator><![CDATA[햄볶은느낌]]></dc:creator>
</item>
<item>
	<title><![CDATA[-tip-main class 실행할때  아규먼트(args[])넣는방법!!]]></title>
	<link>http://guitarhyo.egloos.com/546066</link>
	<guid>http://guitarhyo.egloos.com/546066</guid>
	<description>
	<![CDATA[ 
<img 
				src="http://thumb.egloos.net/100x76/http://pds24.egloos.com/pds/201203/19/52/d0148952_4f66b3f06f12e.png"  
				alt="-tip-main class 실행할때  아규먼트(args[.." 
				width="100px"  
				height="76pxpx"
				align="left"
				style="border:1px solid #DDDDDD;margin:0 10px 10px 0px;"
				/> 이클립스 메뉴 -&amp;gt; Run -&amp;gt; Run Configurations...  클릭을 합니다...해당 프로젝트의 클래스 어플리 케이션 선택 -&amp;gt;Arguments -&amp;gt; 탭 선택 -&amp;gt;Program arguments 에 Variables..클릭!!ㅇ해당 화면에 string_prompt 선택과 ok 클릭!!화면에  ${string_prompt} 확인하고 -&amp;gt; Apply 적용 클릭 -&amp;gt; 적용후에 Run을 하던 나중에Run 하던 사용가능함Run 실행시 args[]  를 입력 할수 있습니다....  	]]>
	</description>
	<pubDate>Mon, 19 Mar 2012 13:27:30 +0900</pubDate>
	<dc:creator><![CDATA[햄볶은느낌]]></dc:creator>
</item>
<item>
	<title><![CDATA[php script 상에서 인자값 받기]]></title>
	<link>http://kaos119.egloos.com/2968554</link>
	<guid>http://kaos119.egloos.com/2968554</guid>
	<description>
	<![CDATA[ 
<img 
				src="http://thumb.egloos.net/100x76/http://pds10.egloos.com/pds/200908/11/27/d0067627_4a80eef563ae9.jpg"  
				alt="php script 상에서 인자값 받기" 
				width="100px"  
				height="76pxpx"
				align="left"
				style="border:1px solid #DDDDDD;margin:0 10px 10px 0px;"
				/> 웹상에서 돌리지 않고 서버상에서 php를 실행할 때 인자값 받기다.    코드 ::      결과값 ::        까먹기 전에 올린다. -_-;;  	]]>
	</description>
	<pubDate>Tue, 11 Aug 2009 13:10:29 +0900</pubDate>
	<dc:creator><![CDATA[기다리면 먹는거다]]></dc:creator>
</item>
<item>
	<title><![CDATA[$addHandler()로 만든 event handler의 argument 설명]]></title>
	<link>http://poco.egloos.com/2330354</link>
	<guid>http://poco.egloos.com/2330354</guid>
	<description>
	<![CDATA[ 
an event handler and retrieve field values related to the event   // attach event handlers this.onClickHandler = Function.createDelegate(this, this.onClick);               $addHandler(document, 'click', this.onClickHandler);          // event handler (참고자료: onClick: function(e) {      e.target      --- Gets the object that the event acted on (srcElement)    e.type        --- Gets the name of the e	]]>
	</description>
	<pubDate>Thu, 23 Apr 2009 05:05:57 +0900</pubDate>
	<dc:creator><![CDATA[poco]]></dc:creator>
</item>
<item>
	<title><![CDATA[Shell Script, 모든 인자 (args) 변수]]></title>
	<link>http://lum7671.egloos.com/3655667</link>
	<guid>http://lum7671.egloos.com/3655667</guid>
	<description>
	<![CDATA[ 
쉘 스크립트에서 모든 인자에 대한 변수는 &quot;$*&quot; 이다.    ...  You can also refer all of them by using $* (which expand to `$1,$2...$9`).   ...    예:    % cat e  #!/usr/bin/env bash  XMODIFIERS=&quot;&quot; /usr/bin/emacs --no-splash $*      참고 : 	]]>
	</description>
	<pubDate>Tue, 11 Mar 2008 10:36:05 +0900</pubDate>
	<dc:creator><![CDATA[개미나라]]></dc:creator>
</item>
	</channel>
</rss>

