ๆญฏWriting_Enterprise_Applications_7_JunoYoon.PDF

Size: px
Start display at page:

Download "ๆญฏWriting_Enterprise_Applications_7_JunoYoon.PDF"

Transcription

1 <JSTORM> Writing Enterprise Applications with Java 2 Platform, Enterprise Edition - part7 JSTORM

2 Revision: <10> <2001/04/29> Document Information Document title: Writing Enterprise Applications with Java 2 Platform, Enterprise Edition - part7 Document file name: Revision number: <10> Issued by: Issue Date: <2001/04/29> Status: Writing_Enterprise_Applications_7_JunoYoon < > junoyoon@orgionet final Content Information Audience Abstract Reference Benchmark information BMP Writing Enterprise Applications with JavaTM Platform, Enterprise Edition By Monica Pawlan ( Training/J2EE/Intro/) JSTORM <2/2>

3 Revision: <10> <2001/04/29> Table of Contents Lesson 7 - JDBC technology BMP(Bean Managed Persistence)4 Bean 4 BonusBean 6 CalcBean JBonusBean JSTORM <3/3>

4 Revision: <10> <2001/04/29> SQL Cloudscape, Bean CMP(Container Managed Persistence), CMP (override) BMP(Bean Managed Pers istence) BMP CMP SQL SQL Bean BMP Bean 1 BMP J2EE Bean Bean BonusBean Container Managed Bean BonusBean getbonus, getsocsec, bonus socsec Bean ejbcreate BMP JDBC SQL Bean CalcBean calcbean getrecord 2 JSTORM <4/4>

5 Revision: <10> <2001/04/29> BonusBean getbonus getsocsec 2 CalcBean BonusBean B ean setentitycontext:, EntityContext Bean EntityContext Bean, Context Bean setentitycontext setse ssioncontext ejbcreate: Bean Create Create (signature) ejbcreate ejbpostcreate: ejbcreate ejbcreate ejbpostcreate ejbpostcreate ejbpostcreate Bean Bean ejbremove: Bean J2EE unsetentitycontext: ejbremove Bean, unsetentitycontext Bean Bean unsetsessioncontext ejbfindbyprimarykey: Bean findbyprimaryk ey, Bean (Signature) ejbfind <type> ejbload ejbstore: set Bean (set) (get), ejbstore, ejbload finder ejbload Bean ejbactivate ejbpassivate:, Bean A ctivation( ) Passvate( ) Swap Bean Swapping JSTORM <5/5>

6 Revision: <10> <2001/04/29> ejbpassiv ate Bean Connection Close ejbactivate Open BonusBean Bean Management Persistence BonusBean Persistence Import InitialContext, DataSource Connection PreparedStatement SQL Request ResultSet query FinderException SQLException, package Beans; import javarmiremoteexception; import javaxejbcreateexception; import javaxejbentitybean; import javaxejbentitycontext; import javaxnaminginitialcontext; import javaxsqldatasource; import javasqlconnection; import javasqlpreparedstatement; import javasqlresultset; import javaxejbfinderexception; import javasqlsqlexception; java:comp/env/jdbc/bonusdb (resourse reference), Deploy Bean J2EE Cloudscape (CloudscapeDB) (alias) CloudscapeDB BONUS, jdbc/bonusd B jdbc/cloudscapedb public class BonusBean implements EntityBean { private EntityContext context; JSTORM <6/6>

7 Revision: <10> <2001/04/29> private Connection con; private String dbname = "java:comp/env/jdbc/bonusdb"; private InitialContext ic = null; private PreparedStatement ps = null; private double bonus; private String socsec; Systemoutprintln Systemoutprintln public double getbonus() { Systemoutprintln("getBonus"); return thisbonus; public String getsocsec() { Systemoutprintln("getSocSec"); return thissocsec; Systemoutprintln, ejbcreate ejbcreate Signature CreateException Remote- Exception SQLException ejbcreate SQL (SQL ) SQLException, RemoteException Primary key String Bonus Primary Key Bonus public String ejbcreate(double bonus, String socsec) throws RemoteException, CreateException, SQLException { thissocsec=socsec; JSTORM <7/7>

8 Revision: <10> <2001/04/29> thisbonus=bonus; Systemoutprintln("Create Method"); try { //Establish database connection ic = new InitialContext(); DataSource ds = (DataSource) iclookup(dbname); con = dsgetconnection(); //Use PreparedStatement to form SQL INSERT statement //to insert into BONUS table ps = conpreparestatement( "INSERT INTO BONUS VALUES (?,? ) "); //Set 1st PreparedStatement value marked by?, with //socsec and the 2nd value marked by? ) with bonus pssetstring(1, socsec); pssetdouble(2, bonus); psexecuteupdate(); catch (javaxnamingnamingexception ex) { exprintstacktrace(); finally { //Close database connection psclose(); conclose(); //Return primary key return socsec; ejbpostcreate ejbcreate Signature public void ejbpostcreate(double bonus, String socsec) throws RemoteException, CreateException, SQLException { Systemoutprintln("Post Create"); ejbfindbyprimarykey BonusBean CMP ejbfindbyprimarykey CMP Primary Key, Pri mary Key BonusBean BMP, JSTORM <8/8>

9 Revision: <10> <2001/04/29> SQLException CMP RemoteException FinderExcepti on Find Operation ejbfindbyprimarykey Primary Key Primary Key Primary Key ejbload bonus socsec BonusBean Primary Key Type String Bonus, Primart Key Bonus public String ejbfindbyprimarykey(string primarykey) throws RemoteException, FinderException, SQLException { Systemoutprintln("Find by primary key"); try { //Establish database connection ic = new InitialContext(); DataSource ds = (DataSource) iclookup(dbname); con = dsgetconnection(); //Use PreparedStatement to form SQL SELECT statement //to select from BONUS table ps = conpreparestatement( "SELECT socsec FROM BONUS WHERE socsec =? "); pssetstring(1, primarykey); //Use ResultSet to capture SELECT statement results ResultSet rs = psexecutequery(); //If ResultSet has a value, the find was successful, //and so initialize and return key if(rsnext()) { key = primarykey; else { Systemoutprintln("Find Error"); catch (javaxnamingnamingexception ex) { exprintstacktrace(); finally { //Close database connection psclose(); conclose(); //Return primary key return key; ejbload JSTORM <9/9>

10 Revision: <10> <2001/04/29> ejbfindbyprimarykey Bean public void ejbload() { Systemoutprintln("Load method"); try { //Establish database connection ic = new InitialContext(); DataSource ds = (DataSource) iclookup(dbname); con = dsgetconnection(); //Use PreparedStatement to form SQL SELECT statement //to select from BONUS table ps = conpreparestatement( "SELECT * FROM BONUS WHERE SOCSEC =? "); pssetstring(1, thissocsec); //Use ResultSet to capture SELECT statement results ResultSet rs = psexecutequery(); //If ResultSet has a value, the find was successful if(rsnext()){ thisbonus = rsgetdouble(2); else { Systemoutprintln("Load Error"); catch (javasqlsqlexception ex) { exprintstacktrace(); catch (javaxnamingnamingexception ex) { exprintstacktrace(); finally { try { //Close database connection psclose(); conclose(); catch (javasqlsqlexception ex) { exprintstacktrace(); ejbstore Bean (set) (get) Bean public void ejbstore() { systemoutprintln("store method"); try { JSTORM <10/10>

11 Revision: <10> <2001/04/29> //Establish database connection DataSource ds = (DataSource) iclookup(dbname); con = dsgetconnection(); //Use PreparedStatement to form SQL UPDATE statement //to update BONUS table ps = conpreparestatement( "UPDATE BONUS SET BONUS =? WHERE SOCSEC =? "); //Set 1st PreparedStatement value marked by? with //bonus and the 2nd value marked by? ) with socsec pssetdouble(1, bonus); pssetstring(2, socsec); int rowcount = psexecuteupdate(); catch (javaxnamingnamingexception ex) { exprintstacktrace(); catch (javasqlsqlexception ex) { exprintstacktrace(); finally { try { //Close database connection psclose(); conclose(); catch (javasqlsqlexception ex) { exprintstacktrace(); ejbremove Bean JavaBean BonusBean ejbremove ejbremoveejbremove socsec Primary Key (socsec), Bean public void ejbremove() throws RemoteException { Systemoutprintln("Remove method"); try { DataSource ds = (DataSource) iclookup(dbname); con = dsgetconnection(); ps = conpreparestatement( "DELETE FROM BONUS WHERE SOCSEC =? "); pssetstring(1, socsec); psexecuteupdate(); catch (javasqlsqlexception ex) { JSTORM <11/11>

12 Revision: <10> <2001/04/29> exprintstacktrace(); catch (Exception ex) { exprintstacktrace(); try { psclose(); conclose(); catch (javasqlsqlexception ex) { exprintstacktrace(); ejbactivate Bean, Bean Bean Temporary Bean, Bean EntityContext getprimarykey Bean Primary Key, Primary Key Bean public void ejbactivate() { Systemoutprintln("Activate method"); socsec = (String) contextgetprimarykey(); ejbpassivate Bean, Bean Bean Temporary Bean, Bean Bean Primary Key null public void ejbpassivate() { Systemoutprintln("Passivate method"); socsec = null; setentitycontext Bean Context ejbactivate Context getprimarykey Bean public void setentitycontext( javaxejbentitycontext ctx){ Systemoutprintln("setEntityContext me thod"); JSTORM <12/12>

13 Revision: <10> <2001/04/29> thiscontext = ctx; unsetentitycontext Bean ejbremove Context null unsetentitycontext Bean public void unsetentitycontext(){ Systemoutprintln("unsetEntityContext method"); ctx = null; CalcBean JBonusBean BonusBean SQL BonusBean CalcBeancalcbonus javasqlsqlexception public class CalcBean implements SessionBean { BonusHome homebonus; public Bonus calcbonus(int multiplier, double bonus, String socsec) throws RemoteException, SQLException, CreateException { Bonus thebonus = null; double calc = (multiplier*bonus); try { InitialContext ctx = new InitialContext(); Object objref = ctxlookup("bonus"); homebonus = (BonusHome) PortableRemoteObjectnarrow( objref, BonusHomeclass); catch (Exception NamingException) { NamingExceptionprintStackTrace(); //Store data in entity Bean thebonus=homebonuscreate(calc, socsec); return thebonus; JSTORM <13/13>

14 Revision: <10> <2001/04/29> JBonusBean CalcBean SQLException DuplicateKeyExcpetion CreateException catch (javaxejbcreateexception e) public double getbonusamt() { if(strmult! = null){ Integer integermult = new Integer(strMult); int multiplier = integermultintvalue(); try { double bonus = 10000; thecalculation = homecalccreate(); Bonus thebonus = thecalculationcalcbonus( multiplier, bonus, socsec); Bonus record = thecalculationgetrecord( socsec); bonusamt = recordgetbonus(); socsec = recordgetsocsec(); catch (javasqlsqlexception e) { thisbonusamt = 00; thissocsec = "000"; thismessage = egetmessage(); catch (javaxejbcreateexception e) { thisbonusamt = 00; thissocsec = "000"; thismessage = egetmessage(); catch (javarmiremoteexception e) { thisbonusamt = 00; thissocsec = "000"; thismessage = egetmessage(); genxml(); return thisbonusamt; else { thisbonusamt = 0; thismessage = "None "; return thisbonusamt; BMP, CloudscapeDB BONUS CMP, createtablesql cloudtablesh (Unix) JSTORM <14/14>

15 Revision: <10> <2001/04/29> cloudtablebat (Windows/NT) 2, createtablesql ~/J2EE/Beans cloudtablesh (Unix) cloudtablebat (Windows/NT) ~/J2EE, Beans, Unix: /cloudtablesh Windows/NT: \cloudtablebat createtablesql drop table bonus; create table bonus (socsec varchar(9) constraint pk_bonus primary key, bonus decimal(10,2)); exit; cloudtablebat rem cloudtablebat rem Creates BONUS table in CloudscapeDB rem rem Place this script in ~\J2EE rem To run: cd ~\J2EE\cloudTablesh rem rem Change this next line to point to *your* rem j2sdkee1 21 installation rem set J2EE_HOME=\home \monicap\j2ee\j2sdkee1 21 rem rem Everything below goes on one line java -DijconnectionCloudscapeDB= jdbc:rmi://localhost:1099/jdbc:cloudscape: CloudscapeDB\;create=true -Dcloudscapesystemhome= JSTORM <15/15>

16 Revision: <10> <2001/04/29> %J2EE_HOME%\cloudscape -classpath %J2EE_HOME%_ib\cloudscape\clientjar; %J2EE_HOME%_ib\cloudscape\ toolsjar; %J2EE_HOME%_ib\cloudscape\cloudscapejar; %J2EE_HOME%_ib\cloudscape\RmiJdbcjar; %J2EE_HOME%_ib\cloudscape_icensejar; %CLASSPATH% -ms16m -mx32m COMcloudscapetoolsij createtablesql cloudtablesh #! /bin/sh # # cloudtablesh # Creates BONUS table in CloudscapeDB # # Place this script in ~\J2EE # To run: cd ~\J2EE\cloudTablesh # # Change this next line to point to *your* # j2s dkee1 21 installation # J2EE_HOME=/home/monicap/J2EE/j2sdkee1 2 # # Everything below goes on one line java -DijconnectionCloudscapeDB=jdbc:rmi: //localhost:1099/jdbc:cloudscape:cloudscapedb\; create=true -Dcloudscapesystemhome= $J2EE_HOME/cloudscape -classpath $J2EE_HOME/lib/cloudscape/clientjar: $J2EE_HOME/lib/cloudscape/toolsjar: $J2EE_HOME/lib/cloudscape/cloudscapejar: $J2EE_HOME/lib/cloudscape/RmiJdbcjar: $J2EE_HOME/lib/cloudscape/licensejar: ${CLASSPATH -ms16m -mx32m COMcloudscapetoolsij createtablesql JAR Bean Bean JAR Bean 1 JAR, 2BeansJar JAR CalcBean Bean JAR ( ) BonusBean, JSTORM <16/16>

17 Revision: <10> <2001/04/29> 2 JAR Bean, BonusBean J AR JAR BonusBean JAR [EJB JAR]: [Add] ([Contents] ) Beans [Bonusclass] [Add] [BonusBeanclass] [Add] [BonusHomeclass] [Add] [Enterprise Bean JAR classes]: Beans/Bonusclass,Beans/BonusHomeclass Beans/BonusBeanclass [OK] [EJB JAR]: [Next] [General]: BeansBonusBean,BeansBonusHome, Be ansbonus BonusBean [Entity] [Next] [Entity Settings]: [Bean-managed persistence] Primary Key javalangstring Primary Key Private Primary Key [Next] JSTORM <17/17>

18 Revision: <10> <2001/04/29> [Environment Entries]: [Next] Bean ( ) [Enterprise Bean References]: [Next] [Resource References]: [Add] [Coded Name] 1 jdbc/bonusdb [Type] ja vaxsqldatasource [Authentication] Container [Next] [Security]: [Next] Bean Security Role [Transaction Management]: [Container-managed transactions] ( ) create,findbyprimarykey, getbonus getsocsec requ ired Commit, Enterprise JavaBeans Developer's Guid e Chapter 6 [Next] [Review Settings]: [Finish] [Inspecting] : 2BeansApp [JNDI names] CalcBean calcs BonusBean bonus, jdbc/bonusdb jdbc/cloud scape JSTORM <18/18>

19 Revision: <10> <2001/04/29> (Verifier) Verifier Bean compiler - Verify Save, Verify : 2BeansApp,[Tools] [Verifier] [OK] Verifier ,tests appweburi, Deploy WAR WAR war (extension), J2EE : [Tools] [Deploy Application] [Deploy BonusApp] J2EE [Return Client Jar], Bean JAR [Next] CalcBean JNDI calcs,bonusbean JNDI bonus, BonusDB JNDI jdbc/cloudscape JNDI Ret urn [Next] Context Root JSPRoot Return [Next] [Finish] JSTORM <19/19>

20 Revision: <10> <2001/04/29> [OK] Web 8000 bonusjsp Deploy JSP [Submit] Bonusjsp HTML, J2EE Cloudscape, Cannot find principal mapping information for data source with JNDI name jdbc/cloudscape J2EE ( ) setentitycontext method Create Method Post Create setentitycontext method Find by primary key Load method getbonus Store method Load method getsocsec Store method Find by primary key Load method getsocsec Store method Load method getbonus Store method <? xml version="1 0"? > <report> JSTORM <20/20>

21 Revision: <10> <2001/04/29> <bonuscalc ssnum=" " bonusamt="300 0" /> </report> Bean BMP JSTORM <21/21>

ๆญฏWriting_Enterprise_Applications_2_JunoYoon.PDF

ๆญฏWriting_Enterprise_Applications_2_JunoYoon.PDF Writing Enterprise Applications with Java 2 Platform, Enterprise Edition - part2 JSTORM http//wwwjstormpekr Revision Document Information Document title Writing Enterprise Applications

More information

๊ต์œก2 ? ๊ทธ๋ฆผ

๊ต์œก2 ? ๊ทธ๋ฆผ Interstage 5 Apworks EJB Application Internet Revision History Edition Date Author Reviewed by Remarks 1 2002/10/11 2 2003/05/19 3 2003/06/18 EJB 4 2003/09/25 Apworks5.1 [ Stateless Session Bean ] ApworksJava,

More information

rmi_๋ฐ•์ค€์šฉ_final.PDF

rmi_๋ฐ•์ค€์šฉ_final.PDF (RMI) - JSTORM http://wwwjstormpekr (RMI)- Document title: Document file name: Revision number: Issued by: Document Information (RMI)- rmi finaldoc Issue Date: Status:

More information

Intro to Servlet, EJB, JSP, WS

Intro to Servlet, EJB, JSP, WS ! Introduction to J2EE (2) - EJB, Web Services J2EE iseminar.. 1544-3355 ( ) iseminar Chat. 1 Who Are We? Business Solutions Consultant Oracle Application Server 10g Business Solutions Consultant Oracle10g

More information

MasoJava4_Dongbin.PDF

MasoJava4_Dongbin.PDF JSTORM http://wwwjstormpekr Issued by: < > Revision: Document Information Document title: Document file name: MasoJava4_Dongbindoc Revision number: Issued by: < > SI, dbin@handysoftcokr

More information

10.ppt

10.ppt : SQL. SQL Plus. JDBC. SQL >> SQL create table : CREATE TABLE ( ( ), ( ),.. ) SQL >> SQL create table : id username dept birth email id username dept birth email CREATE TABLE member ( id NUMBER NOT NULL

More information

JMF2_์‹ฌ๋นˆ๊ตฌ.PDF

JMF2_์‹ฌ๋นˆ๊ตฌ.PDF JMF JSTORM http://wwwjstormpekr Issued by: < > Document Information Document title: Document file name: Revision number: Issued by: JMF2_ doc Issue Date: Status: < > raica@nownurinet

More information

Interstage5 SOAP์„œ๋น„์Šค ์„ค์ • ๊ฐ€์ด๋“œ

Interstage5 SOAP์„œ๋น„์Šค ์„ค์ • ๊ฐ€์ด๋“œ Interstage 5 Application Server ( Solaris ) SOAP Service Internet Sample Test SOAP Server Application SOAP Client Application CORBA/SOAP Server Gateway CORBA/SOAP Gateway Client INTERSTAGE SOAP Service

More information

๋ชฉ์ฐจ JEUS EJB Session Bean๊ฐ€์ด๋“œ stateful session bean stateful sample ๊ฐ€์ด๋“œ sample source ๊ฒฐ๊ณผํ™•์ธ http session์—

๋ชฉ์ฐจ JEUS EJB Session Bean๊ฐ€์ด๋“œ stateful session bean stateful sample ๊ฐ€์ด๋“œ sample source ๊ฒฐ๊ณผํ™•์ธ http session์— ๊ฐœ๋…์ •๋ฆฌ๋ฐ์ƒ˜ํ”Œ์˜ˆ์ œ EJB stateful sample ๋ฌธ์„œ 2016. 01. 14 ๋ชฉ์ฐจ JEUS EJB Session Bean๊ฐ€์ด๋“œ... 3 1. stateful session bean... 3 1.1 stateful sample ๊ฐ€์ด๋“œ... 3 1.1.1 sample source... 3 1.1.2 ๊ฒฐ๊ณผํ™•์ธ... 6 1.2 http session์—์„œ์‚ฌ์šฉํ•˜๊ธฐ...

More information

Connection 8 22 UniSQLConnection / / 9 3 UniSQL OID SET

Connection 8 22 UniSQLConnection / / 9 3 UniSQL OID SET 135-080 679-4 13 02-3430-1200 1 2 11 2 12 2 2 8 21 Connection 8 22 UniSQLConnection 8 23 8 24 / / 9 3 UniSQL 11 31 OID 11 311 11 312 14 313 16 314 17 32 SET 19 321 20 322 23 323 24 33 GLO 26 331 GLO 26

More information

JMF3_์‹ฌ๋นˆ๊ตฌ.PDF

JMF3_์‹ฌ๋นˆ๊ตฌ.PDF JMF JSTORM http://wwwjstormpekr Issued by: < > Revision: Document Information Document title: Document file name: Revision number: Issued by: JMF3_ doc Issue Date:

More information

Spring Boot/JDBC JdbcTemplate/CRUD ์˜ˆ์ œ

Spring Boot/JDBC JdbcTemplate/CRUD ์˜ˆ์ œ Spring Boot/JDBC JdbcTemplate/CRUD ์˜ˆ์ œ ์˜ค๋ผํด์ž๋ฐ”์ปค๋ฎค๋‹ˆํ‹ฐ (ojc.asia, ojcedu.com) Spring Boot, Gradle ๊ณผ์˜คํ”ˆ์†Œ์Šค์ธ MariaDB ๋ฅผ์ด์šฉํ•ด์„œ EMP ํ…Œ์ด๋ธ”์„๋งŒ๋“ค๊ณ  JdbcTemplate, SimpleJdbcTemplate ์„์ด์šฉํ•˜์—ฌ CRUD ๊ธฐ๋Šฅ์„๊ตฌํ˜„ํ•ด๋ณด์ž. ๋งˆ๋ฆฌ์•„ DB ์„ค์น˜๋Š”๋‹ค์Œ URL ์—์„œํ™•์ธํ•˜์ž.

More information

J2EE Concepts

J2EE Concepts ! Introduction to J2EE (1) - J2EE Servlet/JSP/JDBC iseminar.. 1544-3355 ( ) iseminar Chat. 1 Who Are We? Business Solutions Consultant Oracle Application Server 10g Business Solutions Consultant Oracle10g

More information

ๆญฏJavaExceptionHandling.PDF

ๆญฏJavaExceptionHandling.PDF (2001 3 ) from Yongwoo s Park Java Exception Handling Programming from Yongwoo s Park 1 Java Exception Handling Programming from Yongwoo s Park 2 1 4 11 4 4 try/catch 5 try/catch/finally 9 11 12 13 13

More information

No Slide Title

No Slide Title J2EE J2EE(Java 2 Enterprise Edition) (Web Services) :,, SOAP: Simple Object Access Protocol WSDL: Web Service Description Language UDDI: Universal Discovery, Description & Integration 4. (XML Protocol

More information

fundamentalOfCommandPattern_calmglow_pattern_jstorm_1.0_fโ€ฆ

fundamentalOfCommandPattern_calmglow_pattern_jstorm_1.0_fโ€ฆ Command JSTORM http://www.jstorm.pe.kr Command Issued by: < > Revision: Document Information Document title: Command Document file name: Revision number: Issued by: Issue

More information

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜ @ Lesson 2... ( ). ( ). @ vs. logic data method variable behavior attribute method field Flow (Type), ( ) member @ () : C program Method A ( ) Method B ( ) Method C () program : Java, C++, C# data @ Program

More information

Chap7.PDF

Chap7.PDF Chapter 7 The SUN Intranet Data Warehouse: Architecture and Tools All rights reserved 1 Intranet Data Warehouse : Distributed Networking Computing Peer-to-peer Peer-to-peer:,. C/S Microsoft ActiveX DCOM(Distributed

More information

@OneToOne(cascade = = "addr_id") private Addr addr; public Emp(String ename, Addr addr) { this.ename = ename; this.a

@OneToOne(cascade = = addr_id) private Addr addr; public Emp(String ename, Addr addr) { this.ename = ename; this.a 1 ๋Œ€ 1 ๋‹จ๋ฐฉํ–ฅ, ์ฃผํ…Œ์ด๋ธ”์—์™ธ๋ž˜ํ‚ค์‹ค์Šต http://ojcedu.com, http://ojc.asia STS -> Spring Stater Project name : onetoone-1 SQL : JPA, MySQL ์„ ํƒ http://ojc.asia/bbs/board.php?bo_table=lecspring&wr_id=524 ( ๋งˆ๋ฆฌ์•„ DB ์„ค์น˜๋Š”์œ„ URL

More information

JavaGeneralProgramming.PDF

JavaGeneralProgramming.PDF , Java General Programming from Yongwoo s Park 1 , Java General Programming from Yongwoo s Park 2 , Java General Programming from Yongwoo s Park 3 < 1> (Java) ( 95/98/NT,, ) API , Java General Programming

More information

์‰ฝ๊ฒŒ ํ’€์–ด์“ด C ํ”„๋กœ๊ทธ๋ž˜๋ฐŠ

์‰ฝ๊ฒŒ ํ’€์–ด์“ด C ํ”„๋กœ๊ทธ๋ž˜๋ฐŠ Power Java ์ œ 27 ์žฅ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ํ”„๋กœ๊ทธ๋ž˜๋ฐ ์ด๋ฒˆ์žฅ์—์„œํ•™์Šตํ• ๋‚ด์šฉ ์ž๋ฐ”์™€๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค์˜๊ธฐ์ดˆ SQL JDBC ๋ฅผ์ด์šฉํ•œํ”„๋กœ๊ทธ๋ž˜๋ฐ ๋ณ€๊ฒฝ๊ฐ€๋Šฅํ•œ๊ฒฐ๊ณผ์ง‘ํ•ฉ ์ž๋ฐ”๋ฅผํ†ตํ•˜์—ฌ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค๋ฅผ์‚ฌ์šฉํ•˜๋Š”๋ฐฉ๋ฒ•์„ํ•™์Šตํ•ฉ๋‹ˆ๋‹ค. ์ž๋ฐ”์™€๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค JDBC(Java Database Connectivity) ๋Š”์ž๋ฐ” API ์˜ํ•˜๋‚˜๋กœ์„œ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค์—์—ฐ๊ฒฐํ•˜์—ฌ์„œ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค์•ˆ์˜๋ฐ์ดํ„ฐ์—๋Œ€ํ•˜์—ฌ๊ฒ€์ƒ‰ํ•˜๊ณ ๋ฐ์ดํ„ฐ๋ฅผ๋ณ€๊ฒฝํ• ์ˆ˜์žˆ๊ฒŒํ•œ๋‹ค.

More information

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜ @ Lesson 1,..... @ 1 Green Project 1991 Oak Java 1995. 5 December '90 by Patrick Naughton, Mike Sheridan and James Gosling Embedded in various consumer electronic device 1992. 9. 3 Star 7 1993 www portability

More information

แ„‰แ…ตแ†ซแ„…แ…ตแ†ทแ„‘แ…ณแ„…แ…ฉแ„€แ…ณแ„…แ…ขแ„†แ…ฅ_แ„แ…ณแ†ฏแ„…แ…ตแ†ซแ„แ…ฉแ„ƒแ…ณ.key

แ„‰แ…ตแ†ซแ„…แ…ตแ†ทแ„‘แ…ณแ„…แ…ฉแ„€แ…ณแ„…แ…ขแ„†แ…ฅ_แ„แ…ณแ†ฏแ„…แ…ตแ†ซแ„แ…ฉแ„ƒแ…ณ.key CLEAN CODE 6 11st Front Dev. Team 6 1. 2. 3. checked exception 4. 5. 6. 11 : 2 4 : java (50%), javascript (35%), SQL/PL-SQL (15%) : Spring, ibatis, Oracle, jquery ? , (, ) ( ) ํด๋ฆฐ์ฝ”๋“œ๋ฅผ ๋ฌด์‹œํ•œ๋‹ค๋ฉด . 6 1. ,,,!

More information

I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r

I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r Jakarta is a Project of the Apache

More information

Chap12

Chap12 12 12Java RMI 121 RMI 2 121 RMI 3 - RMI, CORBA 121 RMI RMI RMI (remote object) 4 - ( ) UnicastRemoteObject, 121 RMI 5 class A - class B - ( ) class A a() class Bb() 121 RMI 6 RMI / 121 RMI RMI 1 2 ( 7)

More information

chapter1,2.doc

chapter1,2.doc JavaServer Pages Version 08-alpha copyright2001 B l u e N o t e all rights reserved http://jspboolpaecom vesion08-alpha, UML (?) part1part2 Part1 part2 part1 JSP Chapter2 ( ) Part 1 chapter 1 JavaServer

More information

FileMaker ODBC and JDBC Guide

FileMaker ODBC and JDBC Guide FileMaker 13 5 5 5 6 6 6 7 7 8 8 8 8 9 9 10 10 11 11 12 12 12 12 12 12 13 13 14 14 16 16 18 4 19 19 20 20 21 21 21 23 23 23 23 25 26 26 26 26 27 28 28 28 28 29 31 31 32 33 33 33 33 34 34 35 35 35 36 1

More information

ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE (Online Upgrade) ORANGE CONFIGURATION ADMIN O

ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE (Online Upgrade) ORANGE CONFIGURATION ADMIN O Orange for ORACLE V4.0 Installation Guide ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE...1 1....2 1.1...2 1.2...2 1.2.1...2 1.2.2 (Online Upgrade)...11 1.3 ORANGE CONFIGURATION ADMIN...12 1.3.1 Orange Configuration

More information

DocsPin_Korean.pages

DocsPin_Korean.pages Unity Localize Script Service, Page 1 Unity Localize Script Service Introduction Application Game. Unity. Google Drive Unity.. Application Game. -? ( ) -? -?.. ์ค€๋น„์‚ฌํ•ญ Google Drive. Google Drive.,.. - Google

More information

CD-RW_Advanced.PDF

CD-RW_Advanced.PDF HP CD-Writer Program User Guide - - Ver. 2.0 HP CD-RW Adaptec Easy CD Creator Copier, Direct CD. HP CD-RW,. Easy CD Creator 3.5C, Direct CD 3.0., HP. HP CD-RW TEAM ( 02-3270-0803 ) < > 1. CD...3 CD...5

More information

๋ชฉ์ฐจ BUG DEQUEUE ์˜ WAIT TIME ์ด 1 ์ดˆ๋ฏธ๋งŒ์ธ๊ฒฝ์šฐ, ์„ค์ •ํ•œ์‹œ๊ฐ„๋งŒํผ๋Œ€๊ธฐํ•˜์ง€์•Š๋Š”๋ฌธ์ œ๊ฐ€์žˆ์Šต๋‹ˆ๋‹ค... 3 BUG [qp-select-pvo] group by ํ‘œํ˜„์‹์—์žˆ๋Š”์ปฌ๋Ÿผ์„์ฐธ์กฐํ•˜๋Š”์ง‘ํ•ฉ์—ฐ์‚ฐ์ด์กด์žฌํ•˜์ง€์•Š์œผ๋ฉด๊ฒฐ๊ด๊ฐ’์˜ค๋ฅ˜๊ฐ€๋ฐœ์ƒํ• ์ˆ˜์žˆ์Šต๋‹ˆ๋‹ค... 4

๋ชฉ์ฐจ BUG DEQUEUE ์˜ WAIT TIME ์ด 1 ์ดˆ๋ฏธ๋งŒ์ธ๊ฒฝ์šฐ, ์„ค์ •ํ•œ์‹œ๊ฐ„๋งŒํผ๋Œ€๊ธฐํ•˜์ง€์•Š๋Š”๋ฌธ์ œ๊ฐ€์žˆ์Šต๋‹ˆ๋‹ค... 3 BUG [qp-select-pvo] group by ํ‘œํ˜„์‹์—์žˆ๋Š”์ปฌ๋Ÿผ์„์ฐธ์กฐํ•˜๋Š”์ง‘ํ•ฉ์—ฐ์‚ฐ์ด์กด์žฌํ•˜์ง€์•Š์œผ๋ฉด๊ฒฐ๊ด๊ฐ’์˜ค๋ฅ˜๊ฐ€๋ฐœ์ƒํ• ์ˆ˜์žˆ์Šต๋‹ˆ๋‹ค... 4 ALTIBASE HDB 6.5.1.5.10 Patch Notes ๋ชฉ์ฐจ BUG-46183 DEQUEUE ์˜ WAIT TIME ์ด 1 ์ดˆ๋ฏธ๋งŒ์ธ๊ฒฝ์šฐ, ์„ค์ •ํ•œ์‹œ๊ฐ„๋งŒํผ๋Œ€๊ธฐํ•˜์ง€์•Š๋Š”๋ฌธ์ œ๊ฐ€์žˆ์Šต๋‹ˆ๋‹ค... 3 BUG-46249 [qp-select-pvo] group by ํ‘œํ˜„์‹์—์žˆ๋Š”์ปฌ๋Ÿผ์„์ฐธ์กฐํ•˜๋Š”์ง‘ํ•ฉ์—ฐ์‚ฐ์ด์กด์žฌํ•˜์ง€์•Š์œผ๋ฉด๊ฒฐ๊ด๊ฐ’์˜ค๋ฅ˜๊ฐ€๋ฐœ์ƒํ• ์ˆ˜์žˆ์Šต๋‹ˆ๋‹ค... 4 BUG-46266 [sm]

More information

์ž๋ฐ”GUI์‹ค์ „ํ”„๋กœ๊ทธ๋ž˜๋ฐ2_์žฅ๋Œ€์›.PDF

์ž๋ฐ”GUI์‹ค์ „ํ”„๋กœ๊ทธ๋ž˜๋ฐ2_์žฅ๋Œ€์›.PDF JAVA GUI - 2 JSTORM http://wwwjstormpekr JAVA GUI - 2 Issued by: < > Document Information Document title: JAVA GUI - 2 Document file name: Revision number: Issued by: Issue Date:

More information

FileMaker ODBC ๋ฐ JDBC ๊ฐ€์ด๋“œ

FileMaker ODBC ๋ฐ JDBC ๊ฐ€์ด๋“œ FileMaker ODBC JDBC 2004-2019 FileMaker, Inc.. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker, FileMaker Cloud, FileMaker Go FileMaker, Inc.. FileMaker WebDirect FileMaker,

More information

FileMaker 15 ODBC ๋ฐ JDBC ์„ค๋ช…์„œ

FileMaker 15 ODBC ๋ฐ JDBC ์„ค๋ช…์„œ FileMaker 15 ODBC JDBC 2004-2016 FileMaker, Inc.. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker FileMaker Go FileMaker, Inc.. FileMaker WebDirect FileMaker, Inc... FileMaker.

More information

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜ @ Lesson 3 if, if else, if else if, switch case for, while, do while break, continue : System.in, args, JOptionPane for (,, ) @ vs. logic data method variable Data Data Flow (Type), ( ) @ Member field

More information

Mobile Service > IAP > Android SDK [ ] IAP SDK TOAST SDK. IAP SDK. Android Studio IDE Android SDK Version (API Level 10). Name Reference V

Mobile Service > IAP > Android SDK [ ] IAP SDK TOAST SDK. IAP SDK. Android Studio IDE Android SDK Version (API Level 10). Name Reference V Mobile Service > IAP > Android SDK IAP SDK TOAST SDK. IAP SDK. Android Studio IDE 2.3.3 Android SDK Version 2.3.3 (API Level 10). Name Reference Version License okhttp http://square.github.io/okhttp/ 1.5.4

More information

Microsoft Word - Enterprise Java Beans.doc

Microsoft Word - Enterprise Java Beans.doc #1 ์ž‘์„ฑ์ž : ๊น€์„ฑ๋ฐ• ( ์‚ผ์„ฑ SDS ๋ฉ€ํ‹ฐ์บ ํผ์Šค์ „์ž„๊ฐ•์‚ฌ ) email : urstory@nownuri.net homepage : http://sunny.sarang.net - ํ•ด๋‹น๋ฌธ์„œ๋Š” http://sunny.sarang.net JAVA๊ฐ•์ขŒ๋ž€ ์—์„œ๋ฐฐํฌํ•ฉ๋‹ˆ๋‹ค. ๋ฌธ์„œ๋Š”๊ณ„์†๋ฒ„์ „์—…๋ ์ˆ˜์žˆ์Šต๋‹ˆ๋‹ค. ํ•„์ž์˜ํ—ˆ๋ฝ์—†์ด์ˆ˜์ •, ์‚ญ์ œ, ์žฌ์ž‘์„ฑ, ์ด๋™๋“ฑ์„ํ• ์ˆ˜์—†์Šต๋‹ˆ๋‹ค. - ์ž˜๋ชป๋œ๋ถ€๋ถ„์„๋ฐœ๊ฒฌํ•˜์˜€๊ฑฐ๋‚˜,

More information

02 C h a p t e r Java

02 C h a p t e r Java 02 C h a p t e r Java Bioinformatics in J a va,, 2 1,,,, C++, Python, (Java),,, (http://wwwbiojavaorg),, 13, 3D GUI,,, (Java programming language) (Sun Microsystems) 1995 1990 (green project) TV 22 CHAPTER

More information

Dialog Box ์‹คํ–‰ํŒŒ์ผ์„ Web์— ํฌํ•จ์‹œํ‚ค๋Š” ๋ฐฉ๋ฒ•

Dialog Box ์‹คํ–‰ํŒŒ์ผ์„ Web์— ํฌํ•จ์‹œํ‚ค๋Š” ๋ฐฉ๋ฒ• DialogBox Web 1 Dialog Box Web 1 MFC ActiveX ControlWizard workspace 2 insert, ID 3 class 4 CDialogCtrl Class 5 classwizard OnCreate Create 6 ActiveX OCX 7 html 1 MFC ActiveX ControlWizard workspace New

More information

ETL_project_best_practice1.ppt

ETL_project_best_practice1.ppt ETL ETL Data,., Data Warehouse DataData Warehouse ETL tool/system: ETL, ETL Process Data Warehouse Platform Database, Access Method Data Source Data Operational Data Near Real-Time Data Modeling Refresh/Replication

More information

12-file.key

12-file.key 11 (String).. java.lang.stringbuffer. s String s = "abcd"; s = s + "e"; a b c d e a b c d e ,., "910359,, " "910359" " " " " (token) (token),, (delimiter). java.util.stringtokenizer String s = "910359,,

More information

C# Programming Guide - Types

C# Programming Guide - Types C# Programming Guide - Types ์ตœ๋„๊ฒฝ lifeisforu@wemade.com ์ด๋ฌธ์„œ๋Š” MSDN ์˜ Types ๋ฅผ์š”์•ฝํ•˜๊ณ ๋ณด์ถฉํ•œ๊ฒƒ์ž…๋‹ˆ๋‹ค. http://msdn.microsoft.com/enus/library/ms173104(v=vs.100).aspx Types, Variables, and Values C# ์€ type ์—๋ฏผ๊ฐํ•œ์–ธ์–ด์ด๋‹ค. ๋ชจ๋“ 

More information

Interstage4 ์„ค์น˜๊ฐ€์ด๋“œ

Interstage4 ์„ค์น˜๊ฐ€์ด๋“œ Interstage Application Server V501 Operation Guide Internet 1 1 1 FJApache FJApache (WWW (WWW server) server) - - file file - - 2 2 InfoProviderPro InfoProviderPro (WWW (WWW server) server) - - file file

More information

untitled

untitled Push... 2 Push... 4 Push... 5 Push... 13 Push... 15 1 FORCS Co., LTD A Leader of Enterprise e-business Solution Push (Daemon ), Push Push Observer. Push., Observer. Session. Thread Thread. Observer ID.

More information

NoSQL

NoSQL MongoDB Daum Communications NoSQL Using Java Java VM, GC Low Scalability Using C Write speed Auto Sharding High Scalability Using Erlang Read/Update MapReduce R/U MR Cassandra Good Very Good MongoDB Good

More information

Eclipse ์™€ Firefox ๋ฅผ์ด์šฉํ•œ Javascript ๊ฐœ๋ฐœ ๋ฐœํ‘œ์ž : ๋ฌธ๊ฒฝ๋Œ€ 11 ๋…„ 10 ์›” 26 ์ผ์ˆ˜์š”์ผ

Eclipse ์™€ Firefox ๋ฅผ์ด์šฉํ•œ Javascript ๊ฐœ๋ฐœ ๋ฐœํ‘œ์ž : ๋ฌธ๊ฒฝ๋Œ€ 11 ๋…„ 10 ์›” 26 ์ผ์ˆ˜์š”์ผ Eclipse ์™€ Firefox ๋ฅผ์ด์šฉํ•œ Javascript ๊ฐœ๋ฐœ ๋ฐœํ‘œ์ž : ๋ฌธ๊ฒฝ๋Œ€ Introduce Me!!! Job Jeju National University Student Ubuntu Korean Jeju Community Owner E-Mail: ned3y2k@hanmail.net Blog: http://ned3y2k.wo.tc Facebook: http://www.facebook.com/gyeongdae

More information

09-interface.key

09-interface.key 9 Database insert(record r): boolean find(key k): Record 1 Record getkey(): Key * Record Key Database.? Key equals(key y): boolean Database insert(record r): boolean find(key k): Record * Database OK 1

More information

13์ฃผ-14์ฃผproc.PDF

13์ฃผ-14์ฃผproc.PDF 12 : Pro*C/C++ 1 2 Embeded SQL 3 PRO *C 31 C/C++ PRO *C NOT! NOT AND && AND OR OR EQUAL == = SQL,,, Embeded SQL SQL 32 Pro*C C SQL Pro*C C, C Pro*C, C C 321, C char : char[n] : n int, short, long : float

More information

Microsoft PowerPoint - 18-DataSource.ppt

Microsoft PowerPoint - 18-DataSource.ppt 18 ์žฅ : JDBC DataSource DataSource JDBC 2.0์˜ javax.sql ํŒจํ‚ค์ง€์—ํฌํ•จ๋˜์–ด๋„์ž…๋จ DataSource ์ธํ„ฐํŽ˜์ด์Šค๋Š”๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค์ปค๋„ฅ์…˜์„๋งŒ๋“ค๊ฑฐ๋‚˜์‚ฌ์šฉํ•˜๋Š”๋ฐ์ข€๋”์œ ์—ฐํ•œ์•„ํ‚คํ…์ฒ˜๋ฅผ์ œ๊ณตํ•˜๊ธฐ์œ„ํ•ด๋„์ž…๋จ DataSource๋ฅผ์ด์šฉํ• ๊ฒฝ์šฐ, ํด๋ผ์ด์–ธํŠธ์ฝ”๋“œ๋Š”ํ•œ์ค„๋„๋ฐ”๊พธ์ง€์•Š๊ณ ์„œ๋„๋‹ค๋ฅธ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค์—์ ‘์†ํ• ์ˆ˜์žˆ๋„๋กํ•ด์คŒ ์ฆ‰ DataSource ๋Š”์ปค๋„ฅ์…˜์ƒ์„ธ์‚ฌํ•ญ๋“ค์„์บก์Šํ™”

More information

FileMaker ODBC and JDBC Guide

FileMaker ODBC and JDBC Guide FileMaker 14 5 5 5 5 6 6 6 7 7 7 8 8 8 9 9 10 10 11 11 12 12 12 12 12 13 13 14 15 16 17 18 18 19 19 20 20 20 21 21 21 22 22 22 22 23 24 24 24 24 25 27 27 28 29 29 29 29 30 30 31 31 31 32 1 1 1 1 1 1 1

More information

Spring Data JPA Many To Many ์–‘๋ฐฉํ–ฅ ๊ด€๊ณ„ ์˜ˆ์ œ

Spring Data JPA Many To Many ์–‘๋ฐฉํ–ฅ ๊ด€๊ณ„ ์˜ˆ์ œ Spring Data JPA Many To Many ์–‘๋ฐฉํ–ฅ๊ด€๊ณ„์˜ˆ์ œ ์˜ค๋ผํด์ž๋ฐ”์ปค๋ฎค๋‹ˆํ‹ฐ (ojc.asia, ojcedu.com) ์—”ํ‹ฐํ‹ฐ๋งคํ•‘ (Entity Mapping) M : N ์—ฐ๊ด€๊ด€๊ณ„ ์‚ฌ์› (Sawon), ์ทจ๋ฏธ (Hobby) ๋Š”๋‹ค : ๋‹ค๊ด€๊ณ„์ด๋‹ค. ์‚ฌ์›์€์—ฌ๋Ÿฌ์ทจ๋ฏธ๋ฅผ๊ฐ€์งˆ์ˆ˜์žˆ๊ณ , ํ•˜๋‚˜์˜์ทจ๋ฏธ์—ญ์‹œ์—ฌ๋Ÿฌ์‚ฌ์›์—ํ• ๋‹น๋ ์ˆ˜์žˆ๊ธฐ๋•Œ๋ฌธ์ด๋‹ค. ๋ณดํ†ต๊ด€๊ณ„ํ˜• DB ์—์„œ๋Š”๋‹ค : ๋‹ค๊ด€๊ณ„๋Š” 1

More information

1

1 1 1....6 1.1...6 2. Java Architecture...7 2.1 2SDK(Software Development Kit)...8 2.2 JRE(Java Runtime Environment)...9 2.3 (Java Virtual Machine, JVM)...10 2.4 JVM...11 2.5 (runtime)jvm...12 2.5.1 2.5.2

More information

๊ฐœ๋ฐœ๋ฌธ์„œ Oracle - Clob

๊ฐœ๋ฐœ๋ฌธ์„œ Oracle - Clob ๊ฐœ๋ฐœ๋ฌธ์„œ ORACLE CLOB 2008.6.9 ( ์ฃผ ) ์•„์ด์บ”๋งค๋‹ˆ์ง€๋จผํŠธ ๊ฐœ๋ฐœํŒ€ํ™ฉ์ˆœ๊ทœ 0. clob๊ฐœ์š” 1. lob๊ณผ long์˜๋น„๊ต์™€ clob์™€ blob 2. ํ…Œ์ด๋ธ”์ƒ์„ฑ์ฟผ๋ฆฌ ( ์ฐจ์ด์ -์ถ”๊ฐ€์‚ฌํ•ญ ) 3. select ์ฟผ๋ฆฌ 4. insert ์ฟผ๋ฆฌ๋ฐ jdbcํ”„๋กœ๊ทธ๋ž˜๋ฐ 5. update ์ฟผ๋ฆฌ๋ฐ jdbcํ”„๋กœ๊ทธ๋ž˜๋ฐ (4, 5). putclobdata() ํด๋ž˜์Šค 6. select

More information

<C0CCBCBCBFB52DC1A4B4EBBFF82DBCAEBBE7B3EDB9AE2D313939392D382E687770>

<C0CCBCBCBFB52DC1A4B4EBBFF82DBCAEBBE7B3EDB9AE2D313939392D382E687770> i ii iii iv v vi 1 2 3 4 ๊ฐ€์ƒ๋Œ€ํ•™ ์‹œ์Šคํ…œ์˜ ๊ตญ๋‚ด์™ธ ํ˜„ํ™ฉ ์กฐ์‚ฌ ๊ฐ€์ƒ๋Œ€ํ•™ ํ”Œ๋žซํผ ๊ฐœ๋ฐœ ์ด์ƒ์ ์ธ ๊ฐ€์ƒ๋Œ€ํ•™์‹œ์Šคํ…œ์˜ ๋ฏธ๋ž˜์ƒ ์ œ์•ˆ 5 ์›น-๊ธฐ๋ฐ˜ ๊ฐ€์ƒ๋Œ€ํ•™ ์‹œ์Šคํ…œ ์ „ํ†ต์ ์ธ ๊ต์ˆ˜ ๋ฐฉ๋ฒ• ์‹œ๊ฐ„/๊ณต๊ฐ„ ์ œ์•ฝ์„ ๊ทน๋ณตํ•œ ํ•™์Šต๋™๊ธฐ ๋ถ€์—ฌ ๊ต์ˆ˜์˜ ์ผ๋ฐฉ์ ์ธ ๋‚ด์šฉ์ „๋‹ฌ ๊ต์ˆ˜์™€ ํ•™์ƒ๊ฐ„์˜ ์ƒํ˜ธ์ž‘์šฉ ๋™๋ฃŒ ํ•™์ƒ๋“ค ๊ฐ„์˜ ์ƒํ˜ธ์ž‘์šฉ ๊ฐ€์ƒ๋Œ€ํ•™ ์šด์˜ ๊ณต์ง€์‚ฌํ•ญ,๊ฐ•์˜๋ก ์ž๋ฃŒ์‹ค, ๋ฉ”๋ชจ ์งˆ์˜์‘๋‹ต,

More information

Orcad Capture 9.x

Orcad Capture 9.x OrCAD Capture Workbook (Ver 10.xx) 0 Capture 1 2 3 Capture for window 4.opj ( OrCAD Project file) Design file Programe link file..dsn (OrCAD Design file) Design file..olb (OrCAD Library file) file..upd

More information

MySQL-Ch10

MySQL-Ch10 10 Chapter.,,.,, MySQL. MySQL mysqld MySQL.,. MySQL. MySQL....,.,..,,.,. UNIX, MySQL. mysqladm mysqlgrp. MySQL 608 MySQL(2/e) Chapter 10 MySQL. 10.1 (,, ). UNIX MySQL, /usr/local/mysql/var, /usr/local/mysql/data,

More information

Microsoft PowerPoint - GUI _DB์—ฐ๋™.ppt [ํ˜ธํ™˜ ๋ชจ๋“œ]

Microsoft PowerPoint - GUI _DB์—ฐ๋™.ppt [ํ˜ธํ™˜ ๋ชจ๋“œ] GUI ์„ค๊ณ„ 6 ์ฃผ์ฐจ DB ์—ฐ๋™๊น€๋ฌธ์ • tops@yd.ac.kr ๊ฐ•์˜์ˆœ์„œ๊ฐ•์˜์ „ํ™˜๊ฒฝ JDK ์„ค์น˜๋ฐํ™˜๊ฒฝ์„ค์ •ํ†ฐ์บฃ์„ค์น˜๋ฐํ™˜๊ฒฝ์„ค์ •์ดํด๋ฆฝ์Šค (JEE) ์„ค์น˜๋ฐํ™˜๊ฒฝ์„ค์ • MySQL( ๋“œ๋ผ์ด๋ฒ„ ) ์„ค์น˜๋ฐ์ปค๋„ฅํ„ฐ๋“œ๋ผ์ด๋ธŒ์—ฐ๊ฒฐ DB ์ƒ์„ฑ - ๊ณ„์ •์ƒ์„ฑ์ดํด๋ฆฝ์Šค์—์„œ DB์—์—ฐ๊ฒฐ์„œ๋ฒ„์ƒ์„ฑ - ํ”„๋กœ์ ํŠธ์ƒ์„ฑ DB์—ฐ๊ฒฐํ…Œ์ด๋ธ”์ƒ์„ฑ๋ฐ๋“ฑ๋ก 2 MySQL ์„ค์น˜ํ™•์ธ mysql - u root -p MySQL ์—๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค์ถ”๊ฐ€

More information

KYO_SCCD.PDF

KYO_SCCD.PDF 1. Servlets. 5 1 Servlet Model. 5 1.1 Http Method : HttpServlet abstract class. 5 1.2 Http Method. 5 1.3 Parameter, Header. 5 1.4 Response 6 1.5 Redirect 6 1.6 Three Web Scopes : Request, Session, Context

More information

untitled

untitled (shared) (integrated) (stored) (operational) (data) : (DBMS) :, (database) :DBMS File & Database - : - : ( : ) - : - : - :, - DB - - -DBMScatalog meta-data -DBMS -DBMS - -DBMS concurrency control E-R,

More information

thesis

thesis ( Design and Implementation of a Generalized Management Information Repository Service for Network and System Management ) ssp@nile nile.postech.ac..ac.kr DPE Lab. 1997 12 16 GMIRS GMIRS GMIRS prototype

More information

2 2000. 8. 31

2 2000. 8. 31 IT update 00 1 / 2000.8.30 IT update Information Technology 2 2000. 8. 31 C o n t e n t s 2000. 8. 31 3 4 2000. 8. 31 2000. 8. 31 5 6 2000. 8. 31 2000. 8. 31 7 8 2000. 8. 31 2000. 8. 31 9 1 0 2000. 8.

More information

์ œ๋ชฉ์„ ์ž…๋ ฅํ•˜์„ธ์š”.

์ œ๋ชฉ์„ ์ž…๋ ฅํ•˜์„ธ์š”. 1. 4 1.1. SQLGate for Oracle? 4 1.2. 4 1.3. 5 1.4. 7 2. SQLGate for Oracle 9 2.1. 9 2.2. 10 2.3. 10 2.4. 13 3. SQLGate for Oracle 15 3.1. Connection 15 Connect 15 Multi Connect 17 Disconnect 18 3.2. Query

More information

Analytics > Log & Crash Search > Unity ios SDK [Deprecated] Log & Crash Unity ios SDK. TOAST SDK. Log & Crash Unity SDK Log & Crash Search. Log & Cras

Analytics > Log & Crash Search > Unity ios SDK [Deprecated] Log & Crash Unity ios SDK. TOAST SDK. Log & Crash Unity SDK Log & Crash Search. Log & Cras Analytics > Log & Crash Search > Unity ios SDK [Deprecated] Log & Crash Unity ios SDK. TOAST SDK. Log & Crash Unity SDK Log & Crash Search. Log & Crash Unity SDK... Log & Crash Search. - Unity3D v4.0 ios

More information

J2EE & Web Services iSeminar

J2EE & Web Services iSeminar 9iAS :, 2002 8 21 OC4J Oracle J2EE (ECperf) JDeveloper : OLTP : Oracle : SMS (Short Message Service) Collaboration Suite Platform Email Developer Suite Portal Java BI XML Forms Reports Collaboration Suite

More information

์ž๋ฐ” ํ”„๋กœ๊ทธ๋ž˜๋ฐ

์ž๋ฐ” ํ”„๋กœ๊ทธ๋ž˜๋ฐ 5 (kkman@mail.sangji.ac.kr) (Class), (template) (Object) public, final, abstract [modifier] class ClassName { // // (, ) Class Circle { int radius, color ; int x, y ; float getarea() { return 3.14159

More information

ilist.add(new Integer(1))๊ณผ ๊ฐ™์ด ์‚ฌ์šฉํ•˜์ง€ ์•Š๊ณ  ilist.add(1)๊ณผ ๊ฐ™์ด ์‚ฌ์šฉํ•œ ๊ฒƒ์€ ์ž๋ฐ” 5.0์— ์ถ”๊ฐ€๋œ ๊ธฐ๋ณธ ์ž๋ฃŒํ˜•๊ณผ ํ•ด๋‹น ๊ฐ์ฒด ์ž๋ฃŒ ํ˜•๊ณผ์˜ ์˜คํ† ๋ฐ•์‹ฑ/์–ธ๋ฐ•์‹ฑ ๊ธฐ๋Šฅ์„ ์‚ฌ์šฉํ•œ ๊ฒƒ์œผ๋กœ ์˜คํ† ๋ฐ•์‹ฑ์ด๋ž€ ์ž๋ฐ” ์ปดํŒŒ์ผ๋Ÿฌ๊ฐ€ ๊ฐ์ฒด๋ฅผ ์š”๊ตฌํ•˜๋Š” ๊ณณ์— ๊ธฐ๋ณธ ์ž๋ฃŒํ˜•

ilist.add(new Integer(1))๊ณผ ๊ฐ™์ด ์‚ฌ์šฉํ•˜์ง€ ์•Š๊ณ  ilist.add(1)๊ณผ ๊ฐ™์ด ์‚ฌ์šฉํ•œ ๊ฒƒ์€ ์ž๋ฐ” 5.0์— ์ถ”๊ฐ€๋œ ๊ธฐ๋ณธ ์ž๋ฃŒํ˜•๊ณผ ํ•ด๋‹น ๊ฐ์ฒด ์ž๋ฃŒ ํ˜•๊ณผ์˜ ์˜คํ† ๋ฐ•์‹ฑ/์–ธ๋ฐ•์‹ฑ ๊ธฐ๋Šฅ์„ ์‚ฌ์šฉํ•œ ๊ฒƒ์œผ๋กœ ์˜คํ† ๋ฐ•์‹ฑ์ด๋ž€ ์ž๋ฐ” ์ปดํŒŒ์ผ๋Ÿฌ๊ฐ€ ๊ฐ์ฒด๋ฅผ ์š”๊ตฌํ•˜๋Š” ๊ณณ์— ๊ธฐ๋ณธ ์ž๋ฃŒํ˜• ๋ฐ”์— ์ œ๋„ค๋ฆญ์Šค(generics)๋ฅผ ๋„์ž…ํ•˜๊ธฐ ์œ„ํ•œ ์—ฐ๊ตฌ๋Š” ์ด๋ฏธ 8๋…„ ์ „์ธ 1996๋…„๋ถ€ํ„ฐ๋ผ๊ณ  ํ•œ๋‹ค. ์‹ค์ œ๋กœ ์ž๋ฐ”์— ์ œ๋„ค๋ฆญ์Šค๋ฅผ ๋„์ž…ํ•˜ ๋Š” ๋ช‡ ๊ฐ€์ง€ ๋ฐฉ์•ˆ๋“ค์ด ๋…ผ๋ฌธ์œผ๋กœ ๋‚˜์˜ค๊ธฐ ์‹œ์ž‘ํ•œ ๊ฒƒ์ด 1998๋…„ ์ดˆ์ž„์„ ๊ฐ ์•ˆํ•˜๋ฉด ๋ฌด๋ ค 8๋…„์ด ์ง€๋‚œ ํ›„์—์•ผ ์ž๋ฐ” 5.0์— ์ „๊ฒฉ ์ฑ„ํƒ๋˜์—ˆ๋‹ค๋Š” ๊ฒƒ์€ ์ด๊ฒƒ์ด ์–ผ๋งˆ๋‚˜ ์–ด๋ ค์šด ์ผ์ด์—ˆ๋‚˜ ํ•˜๋Š” ๊ฒƒ์„ ๋ณด์—ฌ์ค€๋‹ค. ์ž๋ฐ”์˜ ์ŠคํŽ™์„ ๊ฒฐ์ •ํ•˜๋Š” ํ‘œ์ค€ํ™” ์ ˆ์ฐจ์ธ

More information

Copyright 2012, Oracle and/or its affiliates. All rights reserved.,.,,,,,,,,,,,,.,...,. U.S. GOVERNMENT END USERS. Oracle programs, including any oper

Copyright 2012, Oracle and/or its affiliates. All rights reserved.,.,,,,,,,,,,,,.,...,. U.S. GOVERNMENT END USERS. Oracle programs, including any oper Windows Netra Blade X3-2B( Sun Netra X6270 M3 Blade) : E37790 01 2012 9 Copyright 2012, Oracle and/or its affiliates. All rights reserved.,.,,,,,,,,,,,,.,...,. U.S. GOVERNMENT END USERS. Oracle programs,

More information

ibmdw_rest_v1.0.ppt

ibmdw_rest_v1.0.ppt REST in Enterprise ๋ฐ•์ฐฌ์šฑ 1-1- MISSING PIECE OF ENTERPRISE Table of Contents 1. 2. REST 3. REST 4. REST 5. 2-2 - Wise chanwook.tistory.com / cwpark@itwise.co.kr / chanwook.god@gmail.com ARM WOA S&C AP ENI

More information

MS-SQL SERVER ๋Œ€๋น„ ๊ธฐ๋Šฅ

MS-SQL SERVER ๋Œ€๋น„ ๊ธฐ๋Šฅ Business! ORACLE MS - SQL ORACLE MS - SQL Clustering A-Z A-F G-L M-R S-Z T-Z Microsoft EE : Works for benchmarks only CREATE VIEW Customers AS SELECT * FROM Server1.TableOwner.Customers_33 UNION ALL SELECT

More information

5แ„Œแ…กแ†ผ.key

5แ„Œแ…กแ†ผ.key JAVA Programming 1 (inheritance) 2!,!! 4 3 4!!!! 5 public class Person {... public class Student extends Person { // Person Student... public class StudentWorker extends Student { // Student StudentWorker...!

More information

07 แ„Œแ…กแ„‡แ…กแ„‹แ…ด แ„ƒแ…กแ„‹แ…ฃแ†ผแ„’แ…กแ†ซ แ„แ…ณแ†ฏแ„…แ…ขแ„‰แ…ณ.key

07 แ„Œแ…กแ„‡แ…กแ„‹แ…ด แ„ƒแ…กแ„‹แ…ฃแ†ผแ„’แ…กแ†ซ แ„แ…ณแ†ฏแ„…แ…ขแ„‰แ…ณ.key [ 07 ] . java.lang Object, Math, String, StringBuffer Byte, Short, Integer, Long, Float, Double, Boolean, Character. java.util Random, StringTokenizer Calendar, GregorianCalendar, Date. Collection, List,

More information

3 S Q L A n t i p a t t e r n s Trees/intro/parent.sql CREATE TABLE Comments ( comment_id SERIAL PRIMARY KEY, parent_id BIGINT UNSIGNED, comment TEXT

3 S Q L A n t i p a t t e r n s Trees/intro/parent.sql CREATE TABLE Comments ( comment_id SERIAL PRIMARY KEY, parent_id BIGINT UNSIGNED, comment TEXT 3 S Q L A n t i p a t t e r n s Trees/intro/parent.sql CREATE TABLE Comments ( comment_id SERIAL PRIMARY KEY, parent_id BIGINT UNSIGNED, comment TEXT NOT NULL, FOREIGN KEY (parent_id) REFERENCES Comments(comment_id)

More information

Remote UI Guide

Remote UI Guide Remote UI KOR Remote UI Remote UI PDF Adobe Reader/Adobe Acrobat Reader. Adobe Reader/Adobe Acrobat Reader Adobe Systems Incorporated.. Canon. Remote UI GIF Adobe Systems Incorporated Photoshop. ..........................................................

More information

chapter4

chapter4 Basic Netw rk 1. เธ เธ เธ 2. 3. เธ เธ 4. เธ 2 1. 2. 3. 4. เธ 5. เธ 6. เธ เธ 7. เธ 3 เธ เธ เธ เธ (Mainframe) เธ เธ เธ เธ (Terminal) เธ เธ เธ เธ เธ เธ เธ เธ 4 เธ (Dumb Terminal) เธ เธ เธ เธ Mainframe เธ CPU เธ เธ เธ เธ 5 เธ เธ เธ เธ เธ เธ เธ เธ เธ เธ

More information

mytalk

mytalk ํ•œ๊ตญ์ •๋ณด๋ณดํ˜ธํ•™ํšŒ์†Œํ”„ํŠธ์›จ์–ด๋ณด์•ˆ์—ฐ๊ตฌํšŒ ์ด๊ด„์ฑ…์ž„์ž ์ทจ์•ฝ์ ๋ถ„์„ํŒ€ ์•ˆ์ค€์„  ( ํ•ญ๊ณต๋Œ€ ) ๋„๊ฒฝ๊ตฌ ( ํ•œ์–‘๋Œ€ ) ๋„๊ตฌ๊ฐœ๋ฐœํŒ€๋„๊ฒฝ๊ตฌ ( ํ•œ์–‘๋Œ€ ) ์‹œํ์–ด์ฝ”๋”ฉํŒ€ ์˜ค์„ธ๋งŒ ( ๋™๊ตญ๋Œ€ ) ์ „์ฒด์ ์ธ ๊ทธ๋ฆผ IL Rules Flowgraph Generator Flowgraph Analyzer ํ๋ฆ„๊ทธ๋ž˜ํ”„ ์ƒ์„ฑ๊ธฐ ํ๋ฆ„๊ทธ๋ž˜ํ”„ ๋ถ„์„๊ธฐ O parser ์ค‘๊ฐ„์–ธ์–ด O ํŒŒ์„œ RDL

More information

(Humphery Kim) RAD Studio : h=p://tech.devgear.co.kr/ : h=p://blog.hjf.pe.kr/ Facebook : h=p://d.com/hjfactory :

(Humphery Kim) RAD Studio : h=p://tech.devgear.co.kr/ : h=p://blog.hjf.pe.kr/ Facebook : h=p://d.com/hjfactory : #2 (RAD STUDIO) In www.devgear.co.kr 2016.05.18 (Humphery Kim) RAD Studio : h=p://tech.devgear.co.kr/ : h=p://blog.hjf.pe.kr/ Facebook : h=p://d.com/hjfactory : hskim@embarcadero.kr 3! 1 - RAD, 2-3 - 4

More information

,,,,,, (41) ( e f f e c t ), ( c u r r e n t ) ( p o t e n t i a l difference),, ( r e s i s t a n c e ) 2,,,,,,,, (41), (42) (42) ( 41) (Ohm s law),

,,,,,, (41) ( e f f e c t ), ( c u r r e n t ) ( p o t e n t i a l difference),, ( r e s i s t a n c e ) 2,,,,,,,, (41), (42) (42) ( 41) (Ohm s law), 1, 2, 3, 4, 5, 6 7 8 PSpice EWB,, ,,,,,, (41) ( e f f e c t ), ( c u r r e n t ) ( p o t e n t i a l difference),, ( r e s i s t a n c e ) 2,,,,,,,, (41), (42) (42) ( 41) (Ohm s law), ( ),,,, (43) 94 (44)

More information

ch09

ch09 9 Chapter CHAPTER GOALS B I G J A V A 436 CHAPTER CONTENTS 9.1 436 Syntax 9.1 441 Syntax 9.2 442 Common Error 9.1 442 9.2 443 Syntax 9.3 445 Advanced Topic 9.1 445 9.3 446 9.4 448 Syntax 9.4 454 Advanced

More information

PRO1_09E [์ฝ๊ธฐ ์ „์šฉ]

PRO1_09E [์ฝ๊ธฐ ์ „์šฉ] Siemens AG 1999 All rights reserved File: PRO1_09E1 Information and - ( ) 2 3 4 5 Monitor/Modify Variables" 6 7 8 9 10 11 CPU 12 Stop 13 (Forcing) 14 (1) 15 (2) 16 : 17 : Stop 18 : 19 : (Forcing) 20 :

More information

untitled

untitled - -, (insert) (delete) - - (insert) (delete) (top ) - - (insert) (rear) (delete) (front) A A B top A B C top push(a) push(b) push(c) A B top pop() top A B D push(d) top #define MAX_STACK_SIZE 100 int

More information

API STORE ํ‚ค๋ฐœ๊ธ‰๋ฐ API ์‚ฌ์šฉ๊ฐ€์ด๋“œ Document Information ๋ฌธ์„œ๋ช… : API STORE ์–ธ์–ด๋ณ„ Client ์‚ฌ์šฉ๊ฐ€์ด๋“œ์ž‘์„ฑ์ž : ์ž‘์„ฑ์ผ : ์—…๋ฌด์˜์—ญ : ๋ฒ„์ „ : 1 st Draft. ์„œ๋ธŒ์‹œ์Šคํ…œ : ๋ฌธ์„œ๋ฒˆํ˜ธ : ๋‹จ๊ณ„ : Docum

API STORE ํ‚ค๋ฐœ๊ธ‰๋ฐ API ์‚ฌ์šฉ๊ฐ€์ด๋“œ Document Information ๋ฌธ์„œ๋ช… : API STORE ์–ธ์–ด๋ณ„ Client ์‚ฌ์šฉ๊ฐ€์ด๋“œ์ž‘์„ฑ์ž : ์ž‘์„ฑ์ผ : ์—…๋ฌด์˜์—ญ : ๋ฒ„์ „ : 1 st Draft. ์„œ๋ธŒ์‹œ์Šคํ…œ : ๋ฌธ์„œ๋ฒˆํ˜ธ : ๋‹จ๊ณ„ : Docum API STORE ํ‚ค๋ฐœ๊ธ‰๋ฐ API ์‚ฌ์šฉ๊ฐ€์ด๋“œ Document Information ๋ฌธ์„œ๋ช… : API STORE ์–ธ์–ด๋ณ„ Client ์‚ฌ์šฉ๊ฐ€์ด๋“œ์ž‘์„ฑ์ž : ์ž‘์„ฑ์ผ : 2012.11.23 ์—…๋ฌด์˜์—ญ : ๋ฒ„์ „ : 1 st Draft. ์„œ๋ธŒ์‹œ์Šคํ…œ : ๋ฌธ์„œ๋ฒˆํ˜ธ : ๋‹จ๊ณ„ : Document Distribution Copy Number Name(Role, Title) Date

More information

์ดˆ๋ณด์ž๋ฅผ ์œ„ํ•œ ์ž๋ฐ” 2 21์ผ ์™„์„ฑ - ์ตœ์‹ ๊ฐœ์ •ํŒ

์ดˆ๋ณด์ž๋ฅผ ์œ„ํ•œ ์ž๋ฐ” 2 21์ผ ์™„์„ฑ - ์ตœ์‹ ๊ฐœ์ •ํŒ .,,.,. 7. Sun Microsystems.,,. Sun Bill Joy.. 15... ( ), ( )... 4600. .,,,,,., 5 Java 2 1.4. C++, Perl, Visual Basic, Delphi, Microsoft C#. WebGain Visual Cafe, Borland JBuilder, Sun ONE Studio., Sun Java

More information

DW ๊ฐœ์š”.PDF

DW ๊ฐœ์š”.PDF Data Warehouse Hammersoftkorea BI Group / DW / 1960 1970 1980 1990 2000 Automating Informating Source : Kelly, The Data Warehousing : The Route to Mass Customization, 1996. -,, Data .,.., /. ...,.,,,.

More information

01-OOPConcepts(2).PDF

01-OOPConcepts(2).PDF Object-Oriented Programming Concepts Tel: 02-824-5768 E-mail: hhcho@selabsoongsilackr? OOP (Object) (Encapsulation) (Message) (Class) (Inheritance) (Polymorphism) (Abstract Class) (Interface) 2 1 + = (Dependency)

More information

์ž๋ฐ”-11์žฅN'1-502

์ž๋ฐ”-11์žฅN'1-502 C h a p t e r 11 java.net.,,., (TCP/IP) (UDP/IP).,. 1 ISO OSI 7 1977 (ISO, International Standards Organization) (OSI, Open Systems Interconnection). 6 1983 X.200. OSI 7 [ 11-1] 7. 1 (Physical Layer),

More information

Microsoft PowerPoint - RMI.ppt

Microsoft PowerPoint - RMI.ppt ( ๋ถ„์‚ฐํ†ต์‹ ์‹ค์Šต ) RMI RMI ์ตํžˆ๊ธฐ 1. ๋ถ„์‚ฐํ™˜๊ฒฝ์—์„œ๋™์ž‘ํ•˜๋Š” message-passing์„์ด์šฉํ•œ boundedbuffer ํ•ด๋ฒ•ํ”„๋กœ๊ทธ๋žจ์„์‹คํ–‰ํ•ด๋ณด์„ธ์š”. ์†Œ์Šค์ฝ”๋“œ : ftp://211.119.245.153 -> os -> OSJavaSources -> ch15 -> rmi http://marvel el.incheon.ac.kr์˜ Information Unix

More information

I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r

I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r -------------------------------------------------------------------- -- 1. : ts_cre_bonsa.sql -- 2. :

More information

No Slide Title

No Slide Title Copyright, 2001 Multimedia Lab., CH 3. COM object (In-process server) Eun-sung Lee twoss@mmlab.net Multimedia Lab. Dept. of Electrical and Computer Eng. University of Seoul Seoul, Korea 0. Contents 1.

More information

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜ 1 2 3 4 5 6-2- - - - - - -3- -4- ( Knowledge Cube, Inc. ) // www.kcube.co.kr -5- -6- (KM)? - Knowledge Cube, Inc. - - Peter Drucker - -7- KM Context KM Context KM Context KM Context KM Context KM KM KM

More information

[ ๋ชฉ์ฐจ ] 5.1 ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šคํ”„๋กœ๊ทธ๋ž˜๋ฐ๊ฐœ๋… 5.2 T-SQL T-SQL ๋ฌธ๋ฒ• 5.3 JAVA ํ”„๋กœ๊ทธ๋ž˜๋ฐ 2

[ ๋ชฉ์ฐจ ] 5.1 ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šคํ”„๋กœ๊ทธ๋ž˜๋ฐ๊ฐœ๋… 5.2 T-SQL T-SQL ๋ฌธ๋ฒ• 5.3 JAVA ํ”„๋กœ๊ทธ๋ž˜๋ฐ 2 5 ์žฅ SQL ์‘์šฉ ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค์‹คํ—˜์‹ค 1 [ ๋ชฉ์ฐจ ] 5.1 ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šคํ”„๋กœ๊ทธ๋ž˜๋ฐ๊ฐœ๋… 5.2 T-SQL 5.2.1 T-SQL ๋ฌธ๋ฒ• 5.3 JAVA ํ”„๋กœ๊ทธ๋ž˜๋ฐ 2 5.1 ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šคํ”„๋กœ๊ทธ๋ž˜๋ฐ๊ฐœ๋… ํ”„๋กœ๊ทธ๋ž˜๋ฐ ์ด๋ผ๊ณ ํ•˜๋ฉดํ”„๋กœ๊ทธ๋žจ์†Œ์Šค๋ฅผ์„ค๊ณ„ํ•˜๊ณ , ์ž‘์„ฑํ•˜๊ณ , ๋””๋ฒ„๊น…ํ•˜๋Š”๊ณผ์ •์„๋งํ•œ๋‹ค. ํ”„๋กœ๊ทธ๋žจ ํ˜น์€์†Œํ”„ํŠธ์›จ์–ด๋Š”์ปดํ“จํ„ฐ์—์„œ์ฃผ์–ด์ง„์ž‘์—…์„ํ•˜๋Š”๋ช…๋ น์–ด๋‚˜์—ด์„๋งํ•œ๋‹ค. ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šคํ”„๋กœ๊ทธ๋ž˜๋ฐ์€๋ช…ํ™•ํ•œ์ •์˜๋Š”์—†์ง€๋งŒ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค์—๋ฐ์ดํ„ฐ๋ฅผ์ •์˜ํ•˜๊ณ ,

More information

Java

Java Java http://cafedaumnet/pway Chapter 1 1 public static String format4(int targetnum){ String strnum = new String(IntegertoString(targetNum)); StringBuffer resultstr = new StringBuffer(); for(int i = strnumlength();

More information

SK IoT IoT SK IoT onem2m OIC IoT onem2m LG IoT SK IoT KAIST NCSoft Yo Studio tidev kr 5 SK IoT DMB SK IoT A M LG SDS 6 OS API 7 ios API API BaaS Backend as a Service IoT IoT ThingPlug SK IoT SK M2M M2M

More information

Secure Programming Lecture1 : Introduction

Secure Programming Lecture1 : Introduction Malware and Vulnerability Analysis Lecture3-2 Malware Analysis #3-2 Agenda ์•ˆ๋“œ๋กœ์ด๋“œ์•…์„ฑ์ฝ”๋“œ๋ถ„์„ ์•…์„ฑ์ฝ”๋“œ๋ถ„์„ ์•ˆ๋“œ๋กœ์ด๋“œ์•…์„ฑ์ฝ”๋“œ์ •์ ๋ถ„์„ APK ์ถ”์ถœ #1 adb ๋ช…๋ น ์•ˆ๋“œ๋กœ์ด๋“œ์—์„ค์น˜๋œํŒจํ‚ค์ง€๋ฆฌ์ŠคํŠธ์ถ”์ถœ adb shell pm list packages v0nui-macbook-pro-2:lecture3 v0n$

More information

Microsoft PowerPoint - 04-UDP Programming.ppt

Microsoft PowerPoint - 04-UDP Programming.ppt Chapter 4. UDP Dongwon Jeong djeong@kunsan.ac.kr http://ist.kunsan.ac.kr/ Dept. of Informatics & Statistics ๋ชฉ์ฐจ UDP 1 1 UDP ๊ฐœ๋… ์ž๋ฐ” UDP ํ”„๋กœ๊ทธ๋žจ์ž‘์„ฑ ํด๋ผ์ด์–ธํŠธ์™€์„œ๋ฒ„๋ชจ๋‘ DatagramSocket ํด๋ž˜์Šค๋กœ์ƒ์„ฑ ์ƒํ˜ธ๊ฐ„ํ†ต์‹ ์€ DatagramPacket ํด๋ž˜์Šค๋ฅผ์ด์šฉํ•˜์—ฌ

More information

IBM blue-and-white template

IBM blue-and-white template IBM Software Group ์›น๊ธฐ๋ฐ˜์˜ DB2 ๊ฐœ๋ฐœํ™˜๊ฒฝ๊ตฌ์ถ•๋ฐ DB2 Information Integrator ๋ฅผ์ด์šฉํ•œ์ •๋ณดํ†ตํ•ฉ๋ฐ๋ชจ ํ•œ๊ตญ IBM ์†Œํ”„ํŠธ์›จ์–ด์‚ฌ์—…๋ถ€ ์ •์ง„์˜๋Œ€๋ฆฌ (jyjeong@kr.ibm.com) Agenda Preparation JAVA ENV JAVA CONNECTION PHP ENV PHP CONNECTION Preparation Installation

More information

04์žฅ

04์žฅ 20..29 1: PM ` 199 ntech4 C9600 2400DPI 175LPI T CHAPTER 4 20..29 1: PM ` 200 ntech4 C9600 2400DPI 175LPI T CHAPTER 4.1 JSP (Comment) HTML JSP 3 home index jsp HTML JSP 15 16 17 18 19 20

More information

Facebook API

Facebook API Facebook API 2์กฐ 20071069 ์ž„๋•๊ทœ 20070452 ๋ฅ˜ํ˜ธ๊ฑด 20071299 ์ตœ์„์ฃผ 20100167 ๊น€๋ฏผ์˜ ๋ชฉ์ฐจ Facebook API ์„ค๋ช… Android App ์ƒ์„ฑ Facebook developers App ๋“ฑ๋ก Android App Facebook SDK ์ถ”๊ฐ€ ์˜ˆ์ œ Error ์‚ฌํ•ญ์ •๋ฆฌ Facebook API Social Plugin Facebook

More information

6์ฃผ์ฐจ.key

6์ฃผ์ฐจ.key 6, Process concept A program in execution Program code PCB (process control block) Program counter, registers, etc. Stack Heap Data section => global variable Process in memory Process state New Running

More information

๋‹จ๊ณ„

๋‹จ๊ณ„ TIBERO-WAS ์—ฐ๋™ Guide ๋ณธ๋ฌธ์„œ์—์„œ๋Š” Tibero RDBMS ์—์„œ์ œ๊ณตํ•˜๋Š” JDBC ํ†ตํ•œ JEUS, WEBLOGIC ๋“ฑ๋‹ค์–‘ํ•œ WAS (Web Application Server) ์ œํ’ˆ๊ณผ์˜์—ฐ๋™๋ฐฉ๋ฒ•์„์•Œ์•„๋ณธ๋‹ค. Contents 1. Connection Pool ๋ฐฉ์‹... 2 2. JEUS ์—ฐ๋™... 3 2.1. JEUSMain.xml ์„ค์ • (Thin ๋ฐฉ์‹

More information

untitled

untitled PowerBuilder ๏ฆš Microsoft SQL Server database PB10.0 PB9.0 ๏ฅด Microsoft SQL Server ๏ฆพ database Profile MSS ๏ฆพ (Microsoft SQL Server database interface) ๏จˆ๏ฆบ PB10.0 ๏ฆบ Sybase ๏ฅง Microsoft ๏ฆพ ๏ฆบ SQL Server ๏ฆพ PB10.0

More information