ๆญฏWriting_Enterprise_Applications_7_JunoYoon.PDF
|
|
- ํ๋ ์ง
- 6 years ago
- Views:
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 with Java 2 Platform, Enterprise Edition - part2 JSTORM http//wwwjstormpekr Revision Document Information Document title Writing Enterprise Applications
More information๊ต์ก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 informationrmi_๋ฐ์ค์ฉ_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 informationIntro 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 informationMasoJava4_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 information10.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 informationJMF2_์ฌ๋น๊ตฌ.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 informationInterstage5 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์
๊ฐ๋ ์ ๋ฆฌ๋ฐ์ํ์์ 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 informationConnection 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 informationJMF3_์ฌ๋น๊ตฌ.PDF
JMF JSTORM http://wwwjstormpekr Issued by: < > Revision: Document Information Document title: Document file name: Revision number: Issued by: JMF3_ doc Issue Date:
More informationSpring Boot/JDBC JdbcTemplate/CRUD ์์
Spring Boot/JDBC JdbcTemplate/CRUD ์์ ์ค๋ผํด์๋ฐ์ปค๋ฎค๋ํฐ (ojc.asia, ojcedu.com) Spring Boot, Gradle ๊ณผ์คํ์์ค์ธ MariaDB ๋ฅผ์ด์ฉํด์ EMP ํ ์ด๋ธ์๋ง๋ค๊ณ JdbcTemplate, SimpleJdbcTemplate ์์ด์ฉํ์ฌ CRUD ๊ธฐ๋ฅ์๊ตฌํํด๋ณด์. ๋ง๋ฆฌ์ DB ์ค์น๋๋ค์ URL ์์ํ์ธํ์.
More informationJ2EE 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
(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 informationNo 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 informationfundamentalOfCommandPattern_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 informationPowerPoint ํ๋ ์ ํ ์ด์
@ 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 informationChap7.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
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 informationJavaGeneralProgramming.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 ํ๋ก๊ทธ๋๋ฐ
Power Java ์ 27 ์ฅ๋ฐ์ดํฐ๋ฒ ์ด์ค ํ๋ก๊ทธ๋๋ฐ ์ด๋ฒ์ฅ์์ํ์ตํ ๋ด์ฉ ์๋ฐ์๋ฐ์ดํฐ๋ฒ ์ด์ค ๋ฐ์ดํฐ๋ฒ ์ด์ค์๊ธฐ์ด SQL JDBC ๋ฅผ์ด์ฉํํ๋ก๊ทธ๋๋ฐ ๋ณ๊ฒฝ๊ฐ๋ฅํ๊ฒฐ๊ณผ์งํฉ ์๋ฐ๋ฅผํตํ์ฌ๋ฐ์ดํฐ๋ฒ ์ด์ค๋ฅผ์ฌ์ฉํ๋๋ฐฉ๋ฒ์ํ์ตํฉ๋๋ค. ์๋ฐ์๋ฐ์ดํฐ๋ฒ ์ด์ค JDBC(Java Database Connectivity) ๋์๋ฐ API ์ํ๋๋ก์๋ฐ์ดํฐ๋ฒ ์ด์ค์์ฐ๊ฒฐํ์ฌ์๋ฐ์ดํฐ๋ฒ ์ด์ค์์๋ฐ์ดํฐ์๋ํ์ฌ๊ฒ์ํ๊ณ ๋ฐ์ดํฐ๋ฅผ๋ณ๊ฒฝํ ์์๊ฒํ๋ค.
More informationPowerPoint ํ๋ ์ ํ ์ด์
@ 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
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 informationI 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 informationChap12
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 informationchapter1,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 informationFileMaker 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 informationORANGE 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 informationDocsPin_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 informationCD-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
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
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 informationFileMaker 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 informationFileMaker 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 informationPowerPoint ํ๋ ์ ํ ์ด์
@ 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 informationMobile 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 informationMicrosoft Word - Enterprise Java Beans.doc
#1 ์์ฑ์ : ๊น์ฑ๋ฐ ( ์ผ์ฑ SDS ๋ฉํฐ์บ ํผ์ค์ ์๊ฐ์ฌ ) email : urstory@nownuri.net homepage : http://sunny.sarang.net - ํด๋น๋ฌธ์๋ http://sunny.sarang.net JAVA๊ฐ์ข๋ ์์๋ฐฐํฌํฉ๋๋ค. ๋ฌธ์๋๊ณ์๋ฒ์ ์ ๋ ์์์ต๋๋ค. ํ์์ํ๋ฝ์์ด์์ , ์ญ์ , ์ฌ์์ฑ, ์ด๋๋ฑ์ํ ์์์ต๋๋ค. - ์๋ชป๋๋ถ๋ถ์๋ฐ๊ฒฌํ์๊ฑฐ๋,
More information02 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 informationDialog 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 informationETL_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 information12-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 informationC# 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 informationInterstage4 ์ค์น๊ฐ์ด๋
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 informationuntitled
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 informationNoSQL
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 informationEclipse ์ 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 information09-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 information13์ฃผ-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 informationMicrosoft PowerPoint - 18-DataSource.ppt
18 ์ฅ : JDBC DataSource DataSource JDBC 2.0์ javax.sql ํจํค์ง์ํฌํจ๋์ด๋์ ๋จ DataSource ์ธํฐํ์ด์ค๋๋ฐ์ดํฐ๋ฒ ์ด์ค์ปค๋ฅ์ ์๋ง๋ค๊ฑฐ๋์ฌ์ฉํ๋๋ฐ์ข๋์ ์ฐํ์ํคํ ์ฒ๋ฅผ์ ๊ณตํ๊ธฐ์ํด๋์ ๋จ DataSource๋ฅผ์ด์ฉํ ๊ฒฝ์ฐ, ํด๋ผ์ด์ธํธ์ฝ๋๋ํ์ค๋๋ฐ๊พธ์ง์๊ณ ์๋๋ค๋ฅธ๋ฐ์ดํฐ๋ฒ ์ด์ค์์ ์ํ ์์๋๋กํด์ค ์ฆ DataSource ๋์ปค๋ฅ์ ์์ธ์ฌํญ๋ค์์บก์ํ
More informationFileMaker 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 informationSpring Data JPA Many To Many ์๋ฐฉํฅ ๊ด๊ณ ์์
Spring Data JPA Many To Many ์๋ฐฉํฅ๊ด๊ณ์์ ์ค๋ผํด์๋ฐ์ปค๋ฎค๋ํฐ (ojc.asia, ojcedu.com) ์ํฐํฐ๋งคํ (Entity Mapping) M : N ์ฐ๊ด๊ด๊ณ ์ฌ์ (Sawon), ์ทจ๋ฏธ (Hobby) ๋๋ค : ๋ค๊ด๊ณ์ด๋ค. ์ฌ์์์ฌ๋ฌ์ทจ๋ฏธ๋ฅผ๊ฐ์ง์์๊ณ , ํ๋์์ทจ๋ฏธ์ญ์์ฌ๋ฌ์ฌ์์ํ ๋น๋ ์์๊ธฐ๋๋ฌธ์ด๋ค. ๋ณดํต๊ด๊ณํ DB ์์๋๋ค : ๋ค๊ด๊ณ๋ 1
More information1
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 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>
i ii iii iv v vi 1 2 3 4 ๊ฐ์๋ํ ์์คํ ์ ๊ตญ๋ด์ธ ํํฉ ์กฐ์ฌ ๊ฐ์๋ํ ํ๋ซํผ ๊ฐ๋ฐ ์ด์์ ์ธ ๊ฐ์๋ํ์์คํ ์ ๋ฏธ๋์ ์ ์ 5 ์น-๊ธฐ๋ฐ ๊ฐ์๋ํ ์์คํ ์ ํต์ ์ธ ๊ต์ ๋ฐฉ๋ฒ ์๊ฐ/๊ณต๊ฐ ์ ์ฝ์ ๊ทน๋ณตํ ํ์ต๋๊ธฐ ๋ถ์ฌ ๊ต์์ ์ผ๋ฐฉ์ ์ธ ๋ด์ฉ์ ๋ฌ ๊ต์์ ํ์๊ฐ์ ์ํธ์์ฉ ๋๋ฃ ํ์๋ค ๊ฐ์ ์ํธ์์ฉ ๊ฐ์๋ํ ์ด์ ๊ณต์ง์ฌํญ,๊ฐ์๋ก ์๋ฃ์ค, ๋ฉ๋ชจ ์ง์์๋ต,
More informationOrcad 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 informationMySQL-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 informationMicrosoft 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 informationKYO_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 informationuntitled
(shared) (integrated) (stored) (operational) (data) : (DBMS) :, (database) :DBMS File & Database - : - : ( : ) - : - : - :, - DB - - -DBMScatalog meta-data -DBMS -DBMS - -DBMS concurrency control E-R,
More informationthesis
( 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 information2 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 informationAnalytics > 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 informationJ2EE & 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 informationilist.add(new Integer(1))๊ณผ ๊ฐ์ด ์ฌ์ฉํ์ง ์๊ณ ilist.add(1)๊ณผ ๊ฐ์ด ์ฌ์ฉํ ๊ฒ์ ์๋ฐ 5.0์ ์ถ๊ฐ๋ ๊ธฐ๋ณธ ์๋ฃํ๊ณผ ํด๋น ๊ฐ์ฒด ์๋ฃ ํ๊ณผ์ ์คํ ๋ฐ์ฑ/์ธ๋ฐ์ฑ ๊ธฐ๋ฅ์ ์ฌ์ฉํ ๊ฒ์ผ๋ก ์คํ ๋ฐ์ฑ์ด๋ ์๋ฐ ์ปดํ์ผ๋ฌ๊ฐ ๊ฐ์ฒด๋ฅผ ์๊ตฌํ๋ ๊ณณ์ ๊ธฐ๋ณธ ์๋ฃํ
๋ฐ์ ์ ๋ค๋ฆญ์ค(generics)๋ฅผ ๋์ ํ๊ธฐ ์ํ ์ฐ๊ตฌ๋ ์ด๋ฏธ 8๋ ์ ์ธ 1996๋ ๋ถํฐ๋ผ๊ณ ํ๋ค. ์ค์ ๋ก ์๋ฐ์ ์ ๋ค๋ฆญ์ค๋ฅผ ๋์ ํ ๋ ๋ช ๊ฐ์ง ๋ฐฉ์๋ค์ด ๋ ผ๋ฌธ์ผ๋ก ๋์ค๊ธฐ ์์ํ ๊ฒ์ด 1998๋ ์ด์์ ๊ฐ ์ํ๋ฉด ๋ฌด๋ ค 8๋ ์ด ์ง๋ ํ์์ผ ์๋ฐ 5.0์ ์ ๊ฒฉ ์ฑํ๋์๋ค๋ ๊ฒ์ ์ด๊ฒ์ด ์ผ๋ง๋ ์ด๋ ค์ด ์ผ์ด์๋ ํ๋ ๊ฒ์ ๋ณด์ฌ์ค๋ค. ์๋ฐ์ ์คํ์ ๊ฒฐ์ ํ๋ ํ์คํ ์ ์ฐจ์ธ
More informationCopyright 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 informationibmdw_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 informationMS-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 information5แแ กแผ.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 information07 แแ กแแ กแแ ด แแ กแแ ฃแผแแ กแซ แแ ณแฏแ แ ขแแ ณ.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 information3 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 informationRemote 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 informationchapter4
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 informationmytalk
ํ๊ตญ์ ๋ณด๋ณดํธํํ์ํํธ์จ์ด๋ณด์์ฐ๊ตฌํ ์ด๊ด์ฑ ์์ ์ทจ์ฝ์ ๋ถ์ํ ์์ค์ ( ํญ๊ณต๋ ) ๋๊ฒฝ๊ตฌ ( ํ์๋ ) ๋๊ตฌ๊ฐ๋ฐํ๋๊ฒฝ๊ตฌ ( ํ์๋ ) ์ํ์ด์ฝ๋ฉํ ์ค์ธ๋ง ( ๋๊ตญ๋ ) ์ ์ฒด์ ์ธ ๊ทธ๋ฆผ 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 :
#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),
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 informationch09
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 informationPRO1_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 informationuntitled
- -, (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 informationAPI 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์ผ ์์ฑ - ์ต์ ๊ฐ์ ํ
.,,.,. 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 informationDW ๊ฐ์.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 information01-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
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 informationMicrosoft 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 informationI 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 informationNo 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 informationPowerPoint ํ๋ ์ ํ ์ด์
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 ์ฅ SQL ์์ฉ ๋ฐ์ดํฐ๋ฒ ์ด์ค์คํ์ค 1 [ ๋ชฉ์ฐจ ] 5.1 ๋ฐ์ดํฐ๋ฒ ์ด์คํ๋ก๊ทธ๋๋ฐ๊ฐ๋ 5.2 T-SQL 5.2.1 T-SQL ๋ฌธ๋ฒ 5.3 JAVA ํ๋ก๊ทธ๋๋ฐ 2 5.1 ๋ฐ์ดํฐ๋ฒ ์ด์คํ๋ก๊ทธ๋๋ฐ๊ฐ๋ ํ๋ก๊ทธ๋๋ฐ ์ด๋ผ๊ณ ํ๋ฉดํ๋ก๊ทธ๋จ์์ค๋ฅผ์ค๊ณํ๊ณ , ์์ฑํ๊ณ , ๋๋ฒ๊น ํ๋๊ณผ์ ์๋งํ๋ค. ํ๋ก๊ทธ๋จ ํน์์ํํธ์จ์ด๋์ปดํจํฐ์์์ฃผ์ด์ง์์ ์ํ๋๋ช ๋ น์ด๋์ด์๋งํ๋ค. ๋ฐ์ดํฐ๋ฒ ์ด์คํ๋ก๊ทธ๋๋ฐ์๋ช ํํ์ ์๋์์ง๋ง๋ฐ์ดํฐ๋ฒ ์ด์ค์๋ฐ์ดํฐ๋ฅผ์ ์ํ๊ณ ,
More informationJava
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 informationSK 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 informationSecure 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 informationMicrosoft 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 informationIBM 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 information04์ฅ
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 informationFacebook 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 information6์ฃผ์ฐจ.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 informationuntitled
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