ๆญฏWriting_Enterprise_Applications_2_JunoYoon.PDF

Size: px
Start display at page:

Download "ๆญฏWriting_Enterprise_Applications_2_JunoYoon.PDF"

Transcription

1 <JSTORM> Writing Enterprise Applications with Java 2 Platform, Enterprise Edition - part2 JSTORM http//wwwjstormpekr

2 Revision <10> <2001/04/16> Document Information Document title Writing Enterprise Applications with Java 2 Platform, Enterprise Edition - part2 Document file name Revision number <10> Issued by Issue Date <2001/04/16> Status Writing_Enterprise_Applications_2_JunoYoon < > junoyoon@orgionet final Content Information Audience Abstract Reference Benchmark information J2EE Entity EJB - Writing Enterprise Applications with JavaTM Platform, Enterprise Edition By Monica Pawlan (http//developerjavasuncom/developer/online Training/J2EE/Intro/) JSTORM <2/2>

3 Revision <10> <2001/04/16> Table of Contents Lesson 2 Entity Bean 4 Entity Bean J2EE 18 JSTORM <3/3>

4 Revision <10> <2001/04/16> Entity Bean, Lesson 1 BonusServlet Entity Bean, ID Lesson 1, 5 J2EE SDK Cloudscape Entity Bean, SQL JDBC SQL Entity Bean Entity Bean, Entity Bean Entity Bean, SQL JDBC Entity Bean Entity Bean, Entity Bean, Commit JSTORM <4/4>

5 Revision <10> <2001/04/16> BonusHome Session Bean CalcHome Entity Bean BonusHome, findbyprimarykey ID ID create BonusServlet create, BonusBean ejbcreate BonusHomecreate BonusBeanejbCreate Entity Bean Entity Bean (ID ), javarmiremoteexception BonusServlet package Beans; import javarmiremoteexception; import javaxejbcreateexception; import javaxejbfinderexception; import javaxejbejbhome; public interface BonusHome extends EJBHome { public Bonus create(double bonus, String socsec) throws CreateException, RemoteException; public Bonus findbyprimarykey(string socsec) throws FinderException, RemoteException; Bonus, Create, Entity Bean Bonus Entity Bean getbonus getsocsec package Beans; import javaxejbejbobject; import javarmiremoteexception; public interface Bonus extends EJBObject { public double getbonus() throws RemoteException; public String getsocsec() throws RemoteException; JSTORM <5/5>

6 Revision <10> <2001/04/16> BonusBean BonusBean Entity Bea n(cmp), Entity Bean, Entity Bean, BonusBean Bean Writing Advanced Applications 3 developerjavasuncom/developer/onlinetraining/programming/jdcbook Java 2 Enterprise Edition Developer's Guide 4 javasuncom/j2ee/j2sdkee/techdocs/guides/ejb/html/devguidetochtml BonusServlet BonusHomecreate, BonusBeansetEntityCotext setentitycontext EntityContext Bean Next ejbcreate ejbcreate Bean ejbpostcreate ejbcreate Next Bean JSTORM <6/6>

7 Revision <10> <2001/04/16> Bean Bean Bean Bean, Bean ejbpassivate ejbactivate, Bean /, ejbremove, remove, ejbload ejbstore, Bean getbonus getsocsec, set<type> ( ), Bean,, package Beans; import javarmiremoteexception; import javaxejbcreateexception; import javaxejbentitybean; import javaxejbentitycontext; public class BonusBean implements EntityBean { public double bonus; public String socsec; private EntityContext ctx; public double getbonus() { return thisbonus; public String getsocsec() { return thissocsec; public String ejbcreate(double bonus, String socsec) throws CreateException{ //Called by container after setentitycontext thissocsec=socsec; thisbonus=bonus; return null; JSTORM <7/7>

8 Revision <10> <2001/04/16> public void ejbpostcreate(double bonus, String socsec) { //Called by container after ejbcreate //These next methods are callback methods that //are called by the container to notify the //Bean some event is about to occur public void ejbactivate() { //Called by container before Bean //swapped into memory public void ejbpassivate() { //Called by container before //Bean swapped into storage public void ejbremove() throws RemoteException { //Called by container before //data removed from database public void ejbload() { //Called by container to //refresh Entity Bean's state public void ejbstore() { //Called by container to save //Bean's state to database public void setentitycontext(entitycontext ctx){ //Called by container to set Bean context public void unsetentitycontext(){ //Called by container to unset Bean context Lesson 1 BonusServlet init doget init Session Bean CalcBean Entity Bean BonusBean public class BonusServletextends HttpServlet { CalcHome homecalc; BonusHome homebonus; Bonus thebonus, record; public void init(servletconfig config) throws ServletException{ try { JSTORM <8/8>

9 Revision <10> <2001/04/16> InitialContext ctx = new InitialContext(); Object objref = ctxlookup("bonus"); Object objref2 = ctxlookup("calcs"); homebonus= (BonusHome) PortableRemoteObjectnarrow( objref, BonusHomeclass); homecalc=(calchome) PortableRemoteObjectnarrow( objref2, CalcHomeclass); catch (Exception NamingException) { NamingExceptionprintStackTrace(); doget try CalcBean BonusBean calcbonus, Entity Bean, BonusHomecreate BonusHomefindByPrimaryKey (ID ) Next,,, HTML catch (ID ), ID Entity Bean,,, HTML try { Calc thecalculation; //Retrieve Bonus and Social Security Information String strmult = requestgetparameter( "MULTIPLIER"); //Calculate bonus Integer integermult = new Integer(strMult); multiplier = integermultintvalue(); socsec = requestgetparameter("socsec"); //Calculate bonus double bonus = 10000; thecalculation = homecalccreate(); calc = thecalculationcalcbonus(multiplier, bonus); //Create row in table thebonus = homebonuscreate(calc, socsec); record = homebonusfindbyprimarykey(socsec); //Display data JSTORM <9/9>

10 Revision <10> <2001/04/16> outprintln("<h1>bonus Calculation</H1>"); outprintln("<p>soc Sec passed in " + thebonusgetsocsec() + "<P>"); outprintln("<p>multiplier passed in " + multiplier + "<P>"); outprintln("<p>bonus Amount calculated " + thebonusgetbonus() + "<P>"); outprintln("<p>soc Sec retrieved " + recordgetsocsec() + "<P>"); outprintln("<p>bonus Amount retrieved " + recordgetbonus() + "<P>"); outprintln("</body></html>"); //Catch duplicate key error catch (javaxejbduplicatekeyexception e) { String message = egetmessage(); //Display data outprintln("<h1>bonus Calculation</H1>"); outprintln("<p>soc Sec passed in " + socsec + "<P>"); outprintln("<p>multiplier passed in " + multiplier + "<P>"); outprintln("<p>bonus Amount calculated " + calc + "<P>"); outprintln("<p>" + message + "<P>"); outprintln("</body></html>"); catch (Exception CreateException) { CreateExceptionprintStackTrace(); Entity Bean, Lesson 1 Entity Bean Unix Windows #! /bin/sh cd /home/monicap/j2ee J2EE_HOME=/home/monicap/J2EE/j2sdkee1 21 CPATH= $J2EE_HOME/lib/j2eejar javac -d -classpath "$CPATH" Beans/BonusBeanjava Beans/BonusHomejava Beans/Bonusjava cd \home \monicap\j2ee set J2EE_HOME=\home \monicap\j2ee\j2sdkee1 21 JSTORM <10/10>

11 Revision <10> <2001/04/16> set CPATH= ;%J2EE_HOME%\lib\j2eejar javac -d -classpath %CPATH% Beans/BonusBeanjava Beans/BonusHomejava Beans/Bonusjava Unix Windows cd /home/monicap/j2ee/clientcode J2EE_HOME=/home/monicap/J2EE/j2sdkee1 21 CPATH= $J2EE_HOME/lib/j2eejar/home/monicap/J2EE javac -d -classpath "$CPATH" BonusServletjava cd \home \monicap\j2ee\clientcode set J2EE_HOME=\home\monicap\J2EE\j2sdkee1 21 set CPATH= ;%J2EE_HOME%\lib\j2eejar; \home \monicap\j2ee javac -d -classpath %CPATH% BonusServletjava, J2EE,, Cloudscape j2ee -verbose deploytool cloudscape -start, J2EE Unix Windows j2sdkee1 21/bin/j2ee -verbose j2sdkee1 21/bin/deploytool j2sdkee1 21/bin/cloudscape -start j2sdkee1 21\bin\j2ee -verbose j2sdkee1 21\bin\deploytool j2sdkee1 21\bin\cloudscape -start Entity Bean JSTORM <11/11>

12 Revision <10> <2001/04/16> WAR (Web Archive), BonusServlet bonushtml BonusServlet, J2EE Local Applicatons Window BonusApp [Tools] [Update Application Files] Lesson BonusApp Entity Bean Entity Bean EJB JAR, Lesson 1 Session Bean, Lesson 1, Entity Bean Session Bean JAR Bean JAR [File] [New Enterprise Bean] [Introduction] [Next >] [EJB JAR] [Enterprise Bean will go in field] BonusApp BonusJar [Add] [Add Contents to JAR], Bonusclass [Add] BonusBeanclass [Add] JSTORM <12/12>

13 Revision <10> <2001/04/16> BonusHomeclass [Add] [OK] [EJB JAR] [Next >] [General] BeansBonusBean BeansBonusHome BeansBonus BonusBean [Entity] [Next >] [Entity Settings] [Container-Managed persistence]( ) bonus socsec javalangstring JSTORM <13/13>

14 Revision <10> <2001/04/16> Primitive Type (ex int, float, char ) primary key field socsec [Next >] [Environment Entries] [Next >] Entity Bean ( ) [Enterprise Bean References] [Next >] Entity Bean Bean [Resource References] [Next >] Entity Bean, JavaMail Session [Security] [Next >] Entity Bean security roles [Transaction Management] [Container-managed transactions] create, findbyprimarykey, getbonus, getsocsec required Commit,[Enterprise Java B eans Developer's Guide] 6 (javasuncom/j2ee/j2sdkee/te chdocs/guides/ejb/html/devguidetochtml) JSTORM <14/14>

15 Revision <10> <2001/04/16> [Next >] [Finish] Local Applications BonusApp [JNDI names] BonusBean JNDI bonus J2EE, Entity Bean SQL Local Applications BonusBean Inspecting window [Entity] [Deployment Settings] JSTORM <15/15>

16 Revision <10> <2001/04/16> [Deployment Settings] [Database JNDI name] jdbc/cloudscape [Create table on deploy] [Delete table on Undeploy] [Generate SQL now], SQL EJB findbyprimary Key, SQL SEL ECT "socsec" FROM "BonusBeanTable" WHERE "socsec"=? (? ) findbyprimarykey [OK] JSTORM <16/16>

17 Revision <10> <2001/04/16> J2EE Verify Deploy Verify BonusEar [Tool] [Verifier] [OK], Verifier Version 12, tests appweburi, [Tool] [Deploy Application] [Return Client Jar],, HT ML, JAR [Next >] CalcBean [JNDI names] calcs BonusBean [JND I names] bonus [Next >] BonusRoot [Next >] [Finish], [OK] JSTORM <17/17>

18 Revision <10> <2001/04/16> J2EE Web, 8000 bonushtml http//localhost8000/bonusroot/bonushtml social security number multiplier Submit BonusServlet, HTML Bonus Calculation Soc Sec passed in Multiplier passed in 25 Bonus Amount calculated Soc Sec retrieved Bonus Amount retrieved bonushtml, social security number multiplier 2, Bonus Calculation Soc Sec passed in Multiplier passed in 2 Bonus Amount calculated 2000 Duplicate primary key JSTORM <18/18>

ๆญฏWriting_Enterprise_Applications_7_JunoYoon.PDF

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

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

๊ต์œก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

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

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

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

๋ชฉ์ฐจ 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

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

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

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

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

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

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

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

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

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

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

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

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

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

์ž๋ฐ”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

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

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

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

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

@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

14-Servlet

14-Servlet JAVA Programming Language Servlet (GenericServlet) HTTP (HttpServlet) 2 (1)? CGI 3 (2) http://jakarta.apache.org JSDK(Java Servlet Development Kit) 4 (3) CGI CGI(Common Gateway Interface) /,,, Client Server

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

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

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

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

( )๋ถ€๋ก

( )๋ถ€๋ก A ppendix 1 2010 5 21 SDK 2.2. 2.1 SDK. DevGuide SDK. 2.2 Frozen Yoghurt Froyo. Donut, Cupcake, Eclair 1. Froyo (Ginger Bread) 2010. Froyo Eclair 0.1.. 2.2. UI,... 2.2. PC 850 CPU Froyo......... 2. 2.1.

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

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

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

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

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

แ„‰แ…ตแ†ซแ„…แ…ตแ†ทแ„‘แ…ณแ„…แ…ฉแ„€แ…ณแ„…แ…ขแ„†แ…ฅ_แ„แ…ณแ†ฏแ„…แ…ตแ†ซแ„แ…ฉแ„ƒแ…ณ.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

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

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

Network Programming

Network Programming Part 5 ํ™•์žฅ๋œ Network Programming ๊ธฐ์ˆ  1. Remote Procedure Call 2. Remote Method Invocation 3. Object Request Broker 2. Java RMI

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

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

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

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

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

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

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

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

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

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

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

05-class.key

05-class.key 5 : 2 (method) (public) (private) (interface) 5.1 (Method), (public method) (private method) (constructor), 3 4 5.2 (client). (receiver)., System.out.println("Hello"); (client object) (receiver object)

More information

Social Network

Social Network Social Network Service, Social Network Service Social Network Social Network Service from Digital Marketing Internet Media : SNS Market report A social network service is a social software specially focused

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

PWR PWR HDD HDD USB USB Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl Cable PC PC DDNS (

PWR PWR HDD HDD USB USB Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl Cable PC PC DDNS ( PWR PWR HDD HDD USB USB Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl Cable PC PC DDNS (http://ddns.hanwha-security.com) Step 1~5. Step, PC, DVR Step 1. Cable Step

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

FDยพร˜ร…รร‡รยถรณร€รŒรรฎ(ร€รฅยนร™ยฒรž)-ร€ร›ยพรทรรŸ

FDยพร˜ร…รร‡รยถรณร€รŒรรฎ(ร€รฅยนร™ยฒรž)-ร€ร›ยพรทรรŸ Copyright (c) 1999-2002 FINAL DATA INC. All right reserved Table of Contents 6 Enterprise for Windows 7 8 Enterprise for Windows 10 Enterprise for Windows 11 12 Enterprise for Windows 13 14 Enterprise

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

Something that can be seen, touched or otherwise sensed

Something that can be seen, touched or otherwise sensed Something that can be seen, touched or otherwise sensed Things about an object Weight Height Material Things an object does Pen writes Book stores words Water have Fresh water Rivers Oceans have

More information

MPLAB C18 C

MPLAB C18 C MPLAB C18 C MPLAB C18 MPLAB C18 C MPLAB C18 C #define START, c:\mcc18 errorlevel{0 1} char isascii(char ch); list[list_optioin,list_option] OK, Cancel , MPLAB IDE User s Guide MPLAB C18 C

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

Java ~ Java program: main() class classยป public static void main(string args[])ยป First.java (main class ) /* The first simple program */ public class

Java ~ Java program: main() class classยป public static void main(string args[])ยป First.java (main class ) /* The first simple program */ public class Linux JAVA 1. http://java.sun.com/j2se/1.4.2/download.html J2SE 1.4.2 SDK 2. Linux RPM ( 9 ) 3. sh j2sdk-1_4_2_07-linux-i586-rpm.bin 4. rpm Uvh j2sdk-1_4_2_07-linux-i586-rpm 5. PATH JAVA 1. vi.bash_profile

More information

Portal_9iAS.ppt [์ฝ๊ธฐ ์ „์šฉ]

Portal_9iAS.ppt [์ฝ๊ธฐ ์ „์šฉ] Application Server iplatform Oracle9 A P P L I C A T I O N S E R V E R i Oracle9i Application Server e-business Portal Client Database Server e-business Portals B2C, B2B, B2E, WebsiteX B2Me GUI ID B2C

More information

์ดˆ๋ณด์ž๋ฅผ ์œ„ํ•œ ADO 21์ผ ์™„์„ฑ

์ดˆ๋ณด์ž๋ฅผ ์œ„ํ•œ ADO 21์ผ ์™„์„ฑ ADO 21, 21 Sams Teach Yourself ADO 2.5 in 21 Days., 21., 2 1 ADO., ADO.? ADO 21 (VB, VBA, VB ), ADO. 3 (Week). 1, 2, COM+ 3.. HTML,. 3 (week), ADO. 24 1 - ADO OLE DB SQL, UDA(Universal Data Access) ADO.,,

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

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

Modern Javascript

Modern Javascript ES6 - Arrow Function Class Template String Destructuring Default, Rest, Spread let, const for..of Promises Module System Map, Set * Generator * Symbol * * https://babeljs.io/ Babel is a JavaScript compiler.

More information

PCServerMgmt7

PCServerMgmt7 Web Windows NT/2000 Server DP&NM Lab 1 Contents 2 Windows NT Service Provider Management Application Web UI 3 . PC,, Client/Server Network 4 (1),,, PC Mainframe PC Backbone Server TCP/IP DCS PLC Network

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

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

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜ @ Lesson 4 (Object) (Class) (Instance) (Method) (Constructor) Memory 1 UML 1 @ & 1 (Real World) (Software World) @ &.. () () @ & 2 (Real World) (Software World) OOA/ Modeling Abstraction Instantiation

More information

Service-Oriented Architecture Copyright Tmax Soft 2005

Service-Oriented Architecture Copyright Tmax Soft 2005 Service-Oriented Architecture Copyright Tmax Soft 2005 Service-Oriented Architecture Copyright Tmax Soft 2005 Monolithic Architecture Reusable Services New Service Service Consumer Wrapped Service Composite

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

Business Agility () Dynamic ebusiness, RTE (Real-Time Enterprise) IT Web Services c c WE-SDS (Web Services Enabled SDS) SDS SDS Service-riented Architecture Web Services ( ) ( ) ( ) / c IT / Service- Service-

More information

Index Process Specification Data Dictionary

Index Process Specification Data Dictionary Index Process Specification Data Dictionary File Card Tag T-Money Control I n p u t/o u t p u t Card Tag save D e s c r i p t i o n ๋ฆฌ๋”๊ธฐ์œ„์น˜, In/Out/No_Out. File Name customer file write/ company file write

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

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

MySQL-Ch05

MySQL-Ch05 MySQL P A R T 2 Chapter 05 Chapter 06 Chapter 07 Chapter 08 05 Chapter MySQL MySQL. (, C, Perl, PHP),. 5.1 MySQL., mysqldump, mysqlimport, mysqladmin, mysql. MySQL. mysql,. SQL. MySQL... MySQL ( ). MySQL,.

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

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

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

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

Corporate PPT Template

Corporate PPT Template Tech Sales Consultant Oracle Corporation What s New in Oracle9iAS Forms? Why upgrade Oracle Forms to the WEB? Agenda Oracle9i Forms Web Oracle9i Forms Oracle9i Forms Oracle9i Forms What s NEW in Oracle

More information

์–ด๋Œ‘ํ„ฐ๋ทฐ

์–ด๋Œ‘ํ„ฐ๋ทฐ 04 ์ปค์Šคํ…€์–ด๋Œ‘ํ„ฐ๋ทฐ (Custom Adapter View) ์ปค์Šคํ…€์–ด๋Œ‘ํ„ฐ๋ทฐ (Custom Adapter View) ์ปค์Šคํ…€์–ด๋Œ‘ํ„ฐ๋ทฐ (Custom Adatper View) ๋ž€? u ์–ด๋Œ‘ํ„ฐ๋ทฐ์˜ํ•ญ๋ชฉํ•˜๋‚˜๋Š”๋‹จ์ˆœํ•œ๋ฌธ์ž์—ด์ด๋‚˜์ด๋ฏธ์ง€๋ฟ๋งŒ์•„๋‹ˆ๋ผ, ์ž„์˜์˜๋ทฐ๊ฐ€๋ ์ˆ˜ ์žˆ์Œ ์ด๋ฏธ์ง€๋ทฐ u ์ปค์Šคํ…€์–ด๋Œ‘ํ„ฐ๋ทฐ์„ค์ •์ ˆ์ฐจ 1 2 ํ•ญ๋ชฉ์„์œ„ํ•œ XML ๋ ˆ์ด์•„์›ƒ์ •์˜ ์–ด๋Œ‘ํ„ฐ์ •์˜ 3 ์–ด๋Œ‘ํ„ฐ๋ฅผ์ƒ์„ฑํ•˜๊ณ ์–ด๋Œ‘ํ„ฐ๋ทฐ๊ฐ์ฒด์—์—ฐ๊ฒฐ

More information

UML

UML Introduction to UML Team. 5 2014/03/14 ์›์Šคํƒ€ 200611494 ๊น€์„ฑ์› 200810047 ํ—ˆํƒœ๊ฒฝ 200811466 - Index - 1. UML์ด๋ž€? - 3 2. UML Diagram - 4 3. UML ํ‘œ๊ธฐ๋ฒ• - 17 4. GRAPPLE์— ๋”ฐ๋ฅธ UML ์ž‘์„ฑ ๊ณผ์ • - 21 5. UML Tool Star UML - 32 6. ์ฐธ์กฐ๋ฌธํ—Œ

More information

USB USB DV25 DV25 REC SRN-475S REC SRN-475S LAN POWER LAN POWER Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl C

USB USB DV25 DV25 REC SRN-475S REC SRN-475S LAN POWER LAN POWER Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl C USB USB DV25 DV25 REC SRN-475S REC SRN-475S LAN POWER LAN POWER Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl Cable PC PC Step 1~5. Step, PC, DVR Step 1. Cable Step

More information

intro

intro Contents Introduction Contents Contents / Contents / Contents / Contents / 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57

More information

2015 ๊ฒฝ์ œใ†์žฌ์ •์ˆ˜์ฒฉ

2015 ๊ฒฝ์ œใ†์žฌ์ •์ˆ˜์ฒฉ Contents 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 Part 01 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 Part 02 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62

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

APOGEE Insight_KR_Base_3P11

APOGEE Insight_KR_Base_3P11 Technical Specification Sheet Document No. 149-332P25 September, 2010 Insight 3.11 Base Workstation ๊ทธ๋ฆผ 1. Insight Base ๋ฉ”์ธ๋ฉ”๋‰ด Insight Base Insight Insight Base, Insight Base Insight Base Insight Windows

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

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

thesis

thesis CORBA TMN Surveillance System DPNM Lab, GSIT, POSTECH Email: mnd@postech.ac.kr Contents Motivation & Goal Related Work CORBA TMN Surveillance System Implementation Conclusion & Future Work 2 Motivation

More information

Spring Boot

Spring Boot ์Šคํ”„๋ง๋ถ€ํŠธ (Spring Boot) 1. ์Šคํ”„๋ง๋ถ€ํŠธ (Spring Boot)... 2 1-1. Spring Boot ์†Œ๊ฐœ... 2 1-2. Spring Boot & Maven... 2 1-3. Spring Boot & Gradle... 3 1-4. Writing the code(spring Boot main)... 4 1-5. Writing the code(commandlinerunner)...

More information

ODS-FM1

ODS-FM1 OPTICAL DISC ARCHIVE FILE MANAGER ODS-FM1 INSTALLATION GUIDE [Korean] 1st Edition (Revised 4) ์ƒํ‘œ Microsoft, Windows ๋ฐ Internet Explorer๋Š” ๋ฏธ๊ตญ ๋ฐ / ๋˜๋Š” ๋‹ค๋ฅธ ๊ตญ๊ฐ€์—์„œ Microsoft Corporation ์˜ ๋“ฑ๋ก ์ƒํ‘œ์ž… Intel ๋ฐ Intel Core

More information

SMB_ICMP_UDP(huichang).PDF

SMB_ICMP_UDP(huichang).PDF SMB(Server Message Block) UDP(User Datagram Protocol) ICMP(Internet Control Message Protocol) SMB (Server Message Block) SMB? : Microsoft IBM, Intel,. Unix NFS. SMB client/server. Client server request

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