ValueHolder... 9 Customer.java Oracle TopLink 10g(10.1.3) È Volume3 2

Size: px
Start display at page:

Download "ValueHolder... 9 Customer.java Oracle TopLink 10g(10.1.3) È Volume3 2"

Transcription

1 lê~åäé= qçéiáåâ= NMÖENMKNKPF Volume3 Creation Date: Mar 04, 2005 Last Update: Aug 23, 2005 Version 1.0

2 ValueHolder... 9 Customer.java Oracle TopLink 10g(10.1.3) È Volume3 2

3 Oracle TopLink TopLink Java - TopLink Java ~ O/R Java å JDBC š TopLink TopLink gå å Ò å p{ /URL toplink.jar java -version Ø nç < > Windows Ø Ê UNIX/Linux Oracle TopLink 10g(10.1.3) È Volume3 3

4 Oracle TopLink 10g(10.1.3) Volume2 O/R ~ TopLink Volume1 Volume2 TopLink SQL JDBC ~ JDBC m Web 3 Ê TopLink ~ XML ~ ¾ / ~ XML ~ Workbench SampleApp stage sessions.xml [ ] [ ] [JDBC ] [ Oracle TopLink 10g(10.1.3) È Volume3 4

5 ] [ ] { 1 SampleClient.java main try nç 6 try { sampleclient.readallsample(); sampleclient.querysample(); sampleclient.cachesample(); sampleclient.createsample(); sampleclient.updatesample(); sampleclient.deletesample(); } catch (Exception e) { SampleClient.java setupsample.sql SampleClient SQL å ---- readallsample() ---- [TopLink Finer]:--initialize identitymaps -- Customer -- [TopLink Fine]: --SELECT ID, NAME, ADDR_ID FROM CUSTOMER [TopLink Fine]: --SELECT ID, CITY, STREET FROM ADDRESS WHERE (ID =?) bind => [1] Oracle TopLink 10g(10.1.3) È Volume3 5

6 [TopLink Fine]: --SELECT ID, CITY, STREET FROM ADDRESS WHERE (ID =?) bind => [2] [TopLink Fine]: --SELECT ID, CITY, STREET FROM ADDRESS WHERE (ID =?) bind => [3] -- Customer (Address,Phone) -- [ 1: ] [ 1: ] [TopLink Fine]: --SELECT P_NUMBER, ID, CUST_ID FROM PHONE WHERE (CUST_ID =?) bind => [1] [ 1: ] [ 2: ] À å ½ TopLink ~ ½ À å readallsample() 3 Customer Address Phone 7 å ---- readallsample() ---- [TopLink Finer]:--initialize identitymaps -- Customer -- [TopLink Fine]: --SELECT ID, NAME, ADDR_ID FROM CUSTOMER [TopLink Fine]: --SELECT ID, CITY, STREET FROM ADDRESS WHERE (ID =?) bind => [1] [TopLink Fine]: --SELECT ID, CITY, STREET FROM ADDRESS WHERE (ID =?) bind => [2] [TopLink Fine]: --SELECT ID, CITY, STREET FROM ADDRESS WHERE (ID =?) bind => [3] -- Customer (Address,Phone) -- [ 1: ] [ 1: ] [TopLink Fine]: --SELECT P_NUMBER, ID, CUST_ID FROM PHONE WHERE (CUST_ID =?) bind => [1] [ 1: ] [ 2: ] [ 2: ] [ 2: ] [TopLink Fine]: --SELECT P_NUMBER, ID, CUST_ID FROM PHONE WHERE (CUST_ID =?) bind => [2] [ 3: ] [ 3: ] [ 3: ] [TopLink Fine]: --SELECT P_NUMBER, ID, CUST_ID FROM PHONE WHERE (CUST_ID =?) bind => [3] [ 4: ] ---- readallsample() ---- Oracle TopLink 10g(10.1.3) È Volume3 6

7 å ½ ñ «Customer CUSTOMER ADDRESS À Address ~ ~ TopLink ~ ~ ~ ~ Workbench SampleApp mw SampleProject.mwp Customer Address 1 1 ~ [ ] 2 o ~ 1 «å ~ ~ ~ ~ ~ Oracle TopLink 10g(10.1.3) È Volume3 7

8 Customer Phone 1 o ~ [ ] 3 ~ Mapping Workbench SampleProject [ ] [ XML] XML setupsamle.sql SampleClient readallsample() 7 å CUSTOMER ADDRESS PHONE readallsample() ---- [TopLink Finer]:--initialize identitymaps -- Customer -- [TopLink Fine]: --SELECT t1.id, t1.name, t1.addr_id, t0.id, t0.city, t0.street FROM ADDRESS t0, CUSTOMER t1 WHERE (t0.id = t1.addr_id) -- Customer (Address,Phone) -- [ 1: ] [ 1: ] [TopLink Fine]: --SELECT t0.p_number, t0.id, t0.cust_id FROM PHONE t0, CUSTOMER t1 WHERE (t0.cust_id = t1.id) [ 1: ] [ 2: ] [ 2: ] [ 2: ] [ 3: ] Oracle TopLink 10g(10.1.3) È Volume3 8

9 [ 3: ] [ 3: ] [ 4: ] ---- readallsample() ---- ~ ½ querysample() ---- querysample() ---- [TopLink Finer]: --initialize identitymaps -- Customer -- [TopLink Fine]: --SELECT t1.id, t1.name, t1.addr_id, t0.id, t0.city, t0.street FROM ADDRESS t0, CUSTOMER t1 WHERE ((t0.city =?) AND (t0.id = t1.addr_id)) bind => [ ] -- Customer (Address,Phone) -- [ 1: ] [ 1: ] [TopLink Fine]: --SELECT t0.p_number, t0.id, t0.cust_id FROM PHONE t0, ADDRESS t2, CUSTOMER t1 WHERE (((t0.cust_id = t1.id) AND (t2.city =?)) AND (t2.id = t1.addr_id)) bind => [ ] [ 1: ] [ 2: ] [ 2: ] [ 2: ] [ 3: ] ---- querysample() ---- TopLink Devevloper's Guide 11. Optimization - Query Optimization ValueHolder Customer Address 1 1 Customer Phone 1 o 1 1 ValueHolder Oracle TopLink 10g(10.1.3) È Volume3 9

10 nç ValueHolder Customer Address ValueHolder 1 o ValueHolder TopLink Devevloper's Guide 33. Understanding Mappings - Mapping Concepts 1. address š~ nç Customer address š ~ setter/getter nç Customer.java package sample; import java.util.collection; import java.util.vector; import oracle.toplink.indirection.valueholder; import oracle.toplink.indirection.valueholderinterface; public class Customer { /** ( ) */ private int id; /** */ private String name; /** * ValueHolder Address * 1 1 */ private ValueHolderInterface address; /** 1 */ private Collection phones; /** * */ public Customer() { this.name = ""; //ValueHolder this.address = new ValueHolder(); this.phones = new Vector(); } public void setaddress(address address) { Oracle TopLink 10g(10.1.3) È Volume3 10

11 //ValueHolder this.address.setvalue(address); } public Address getaddress() { //ValueHolder return (Address)address.getValue(); } } 2. Workbench ~ Customer.java nç Workbench SampleApp mw SampleProject.mwp Customer [ ] ~ ~ ñ 4 3. address š ~ nç Customer address š [ ] [ ] phones š ~ ~ Oracle TopLink 10g(10.1.3) È Volume3 11

12 5 address š 4. XML address š ~ nç XML SampleApp stage 5. setupsample.sql SampleClient ~ ValueHolder Customer ADDRESS Address address š À ---- readallsample() ---- [TopLink Finer]:--initialize identitymaps -- Customer -- [TopLink Fine]: --SELECT ID, NAME, ADDR_ID FROM CUSTOMER -- Customer (Address,Phone) -- [ 1: ] [TopLink Fine]: --SELECT ID, CITY, STREET FROM ADDRESS WHERE (ID =?) bind => [1] [ 1: ] [TopLink Fine]: --SELECT t0.p_number, t0.id, t0.cust_id FROM PHONE t0, CUSTOMER t1 WHERE (t0.cust_id = t1.id) [ 1: ] [ 2: ] [ 2: ] Oracle TopLink 10g(10.1.3) È Volume3 12

13 [TopLink Fine]: --SELECT ID, CITY, STREET FROM ADDRESS WHERE (ID =?) bind => [2] [ 2: ] [ 3: ] [ 3: ] [TopLink Fine]: --SELECT ID, CITY, STREET FROM ADDRESS WHERE (ID =?) bind => [3] [ 3: ] [ 4: ] ---- readallsample() ---- ¾ Workbench ~ ~ ~ ~ ~ / ~ TopLink Devevloper's Guide 11. Optimization - Query Optimization Oracle TopLink 10g(10.1.3) È Volume3 13

14 TopLink Volumn1 Volume3 TopLink o O/R ~ Ž j å å SQL TopLink TopLink TopLink O/R TopLink Devevloper's Guide Oracle TopLink 10g(10.1.3) È Volume3 14

15 ò Copyright 2005 Oracle Corporation Japan. All Rights Reserved. ô ³ l nç ò Oracle ò å Oracle8 Oracle8i Oracle9i Oracle10g Net8 ò å ³ m Oracle TopLink 10g(10.1.3) È Volume3 15

TopLink å SampleClient.java... 5 Ò readallsample() querysample() cachesample() Ç..

TopLink å SampleClient.java... 5 Ò readallsample() querysample() cachesample() Ç.. lê~åäé= qçéiáåâ= NMÖENMKNKPF Volume2 Creation Date: Mar 04, 2005 Last Update: Aug 22, 2005 Version 1.0 ...3... 3 TopLink å...4 1... 4... 4 SampleClient.java... 5 Ò... 8... 9... 10 readallsample()... 11

More information

TopLink È... 3 TopLink...5 TopLink åø... 6 TopLink å Workbench O/R ~... 8 Workbench À ~... 8 Foundation Library å... 8 TopL

TopLink È... 3 TopLink...5 TopLink åø... 6 TopLink å Workbench O/R ~... 8 Workbench À ~... 8 Foundation Library å... 8 TopL lê~åäé= qçéiáåâ= NMÖENMKNKPF Volume1 Creation Date: Mar 04, 2005 Last Update: Aug 23, 2005 Version 1.0 ...3... 3 TopLink 10.1.3 È... 3 TopLink...5 TopLink åø... 6 TopLink å... 7... 8 Workbench O/R ~...

More information

BC4J...4 BC4J Association JSP BC4J JSP OC4J

BC4J...4 BC4J Association JSP BC4J JSP OC4J lê~åäévá=gaéîéäçééê= 9.0.3/9.0.4 BC4J Creation Date: Oct 08, 2003 Last Update: Feb 27, 2004 Version 1.0 ...3... 3 BC4J...4 BC4J...4... 4... 5... 6...7... 8... 9 Association... 13... 15... 20... 22... 25

More information

PowerPoint Presentation

PowerPoint Presentation UML 2004 7 9 10 ... OOP UML 10 Copyright 2004 Akira HIRASAWA all rights reserved. 2 1. 2. 3. 4. UML 5. Copyright 2004 Akira HIRASAWA all rights reserved. 3 1..... Copyright 2004 Akira HIRASAWA all rights

More information

ハピタス のコピー.pages

ハピタス のコピー.pages Copyright (C) All Rights Reserved. 10 12,500 () ( ) ()() 1 : 2 : 3 : 2 4 : 5 : Copyright (C) All Rights Reserved. Copyright (C) All Rights Reserved. Copyright (C) All Rights Reserved. Copyright (C) All

More information

Copyright 2008 All Rights Reserved 2

Copyright 2008 All Rights Reserved 2 Copyright 2008 All Rights Reserved 1 Copyright 2008 All Rights Reserved 2 Copyright 2008 All Rights Reserved 3 Copyright 2008 All Rights Reserved 4 Copyright 2008 All Rights Reserved 5 Copyright 2008 All

More information

( ) 1,771,139 54, , ,185, , , , ,000, , , , , ,000 1,000, , , ,000

( ) 1,771,139 54, , ,185, , , , ,000, , , , , ,000 1,000, , , ,000 ( ) 6,364 6,364 8,884,908 6,602,454 218,680 461,163 1,602,611 2,726,746 685,048 2,022,867 642,140 1,380,727 18,831 290,000 240,000 50 20. 3.31 11,975,755 1,215,755 10,760,000 11,258,918 (68) 160,000 500,000

More information

2

2 DX Simulator Copyright 2001-2002 Yamaha Corporation. All rights reserved. Version 1.2, 2002 YAMAHA CORPORATION 2 z x z x c 3 z Windows Macintosh Windows Macintosh x 4 z Windows Macintosh Windows Macintosh

More information

tkk0408nari

tkk0408nari SQLStatement Class Sql Database SQL Structured Query Language( ) ISO JIS http://www.techscore.com/tech/sql/02_02.html Database sql Perl Java SQL ( ) create table tu_data ( id integer not null, -- id aid

More information

Oracle JDeveloper 10g ADF Creation Date: Jul 07, 2004 Last Update: Jul 08, 2004 Version 1.0

Oracle JDeveloper 10g ADF Creation Date: Jul 07, 2004 Last Update: Jul 08, 2004 Version 1.0 Oracle JDeveloper 10g ADF Creation Date: Jul 07, 2004 Last Update: Jul 08, 2004 Version 1.0 ... 1... 2... 3... 5... 6... 6... 9... 9 Vector... 10 Struts... 12... 14 cart.jsp 1... 15 cart.jsp 2... 17 JSP...

More information

Oracle9i JDeveloperによるWebサービスの構築

Oracle9i JDeveloperによるWebサービスの構築 Oracle9i JDeveloper Web Web Web Web Web Web EJB Web EJB Web Web Oracle9iAS Apache SOAP WSDL Web Web Web Oracle9i JDeveloper Java XML Web Web Web Web Simple Object Access Protocol SOAP :Web Web Services

More information

Spring Framework Web Web Web DB AOP DI Java EE 3 Web WebMVC Web Java 4 DB H2 Database Java H2 Database http://www.h2database.com/ Version 1.0 Zip 5 H2 > cd $H2_HOME/bin > java cp h2.jar org.h2.tools.server

More information

意外と簡単!?

意外と簡単!? !?Access Oracle Oracle Migration Workbench MS-Access Oracle Creation Date: Oct 01, 2004 Last Update: Mar 08, 2005 Version: 1.1 !? Oracle Database 10g / GUI!? / Standard Edition!? /!?!? Oracle Database

More information

キャラクタ・セットの移行に関するベスト・プラクティス

キャラクタ・セットの移行に関するベスト・プラクティス 2003 9 ... 3 Oracle Database 10g... 3... 3... 4 Unicode... 6 Unicode... 6... 7... 8... 8... 9... 9... 10... 10... 10... 11... 11 US7ASCII... 13... 14... 14 Export/Import... 14 CSALTER... 15 Export Import

More information

š ( š ) ,148,770 3,147,082 1, ,260 1,688 1,688 10,850 10, , ,

š ( š ) ,148,770 3,147,082 1, ,260 1,688 1,688 10,850 10, , , š ( š ) 60,000 240,000 120,000 60,000 120,000 360,000 72,000 1,128,000 56,380,000 14. 2.20 35,492,337 17,401,486 18,090,851 32,141,906 11,070,000 3,570,000 7,500,000 7,020,000 7,020,000 851 851 9,778,644

More information

( š ) œ 525, , , , ,000 85, , ,810 70,294 4,542,050 18,804,052 () 178,710 1,385, , ,792 72,547 80,366

( š ) œ 525, , , , ,000 85, , ,810 70,294 4,542,050 18,804,052 () 178,710 1,385, , ,792 72,547 80,366 ( š ) 557,319,095 2,606,960 31,296,746,858 7,615,089,278 2,093,641,212 6,544,698,759 936,080 3,164,967,811 20. 3.28 178,639,037 48,288,439 170,045,571 123,059,601 46,985,970 55,580,709 56,883,178 19. 4.20

More information

Copyright 2008 NIFTY Corporation All rights reserved. 2

Copyright 2008 NIFTY Corporation All rights reserved. 2 Copyright 2008 NIFTY Corporation All rights reserved. 2 Copyright 2008 NIFTY Corporation All rights reserved. 3 Copyright 2008 NIFTY Corporation All rights reserved. 4 Copyright 2008 NIFTY Corporation

More information

( ) g 900,000 2,000,000 5,000,000 2,200,000 1,000,000 1,500, ,000 2,500,000 1,000, , , , , , ,000 2,000,000

( ) g 900,000 2,000,000 5,000,000 2,200,000 1,000,000 1,500, ,000 2,500,000 1,000, , , , , , ,000 2,000,000 ( ) 73 10,905,238 3,853,235 295,309 1,415,972 5,340,722 2,390,603 890,603 1,500,000 1,000,000 300,000 1,500,000 49 19. 3. 1 17,172,842 3,917,488 13,255,354 10,760,078 (550) 555,000 600,000 600,000 12,100,000

More information

初心者にもできるアメブロカスタマイズ新2016.pages

初心者にもできるアメブロカスタマイズ新2016.pages Copyright All Rights Reserved. 41 Copyright All Rights Reserved. 60 68 70 6 78 80 Copyright All Rights Reserved. FC2 97 Copyright All Rights Reserved. Copyright All Rights Reserved. Copyright All Rights

More information

- 2 Copyright (C) 2006. All Rights Reserved.

- 2 Copyright (C) 2006. All Rights Reserved. - 2 Copyright (C) 2006. All Rights Reserved. 2-3 Copyright (C) 2006. All Rights Reserved. 70-4 Copyright (C) 2006. All Rights Reserved. ...1...3...7...8 1...9...14...16 2...18...20...21 3...22...23...23...24

More information

Ÿ ( ) ,166,466 18,586,390 85,580,076 88,457,360 (31) 1,750,000 83,830,000 5,000,000 78,830, ,388,808 24,568, ,480 6,507,1

Ÿ ( ) ,166,466 18,586,390 85,580,076 88,457,360 (31) 1,750,000 83,830,000 5,000,000 78,830, ,388,808 24,568, ,480 6,507,1 ( ) 60,000 120,000 1,800,000 120,000 100,000 60,000 60,000 120,000 10,000,000 120,000 120,000 120,000 120,000 1,500,000 171,209,703 5,000,000 1,000,000 200,000 10,000,000 5,000,000 4,000,000 5,000,000

More information

20 180pixel 180pixel Copyright 2014 Yahoo Japan Corporation. All Rights Reserved.

20 180pixel 180pixel Copyright 2014 Yahoo Japan Corporation. All Rights Reserved. 12 300pixel 300pixel www.yahoo.co.jp Copyright 2014 Yahoo Japan Corporation. All Rights Reserved. 20 180pixel 180pixel Copyright 2014 Yahoo Japan Corporation. All Rights Reserved. 300pixel 300pixel www.yahoo.co.jp

More information

Oracle Lite Tutorial

Oracle Lite Tutorial GrapeCity -.NET with GrapeCity - SPREAD Creation Date: Nov. 30, 2005 Last Update: Nov. 30, 2005 Version: 1.0 Document Control Internal Use Only Author Hiroshi Ota Change Logs Date Author Version Change

More information

Copyright 2006 KDDI Corporation. All Rights Reserved page1

Copyright 2006 KDDI Corporation. All Rights Reserved page1 Copyright 2006 KDDI Corporation. All Rights Reserved page1 Copyright 2006 KDDI Corporation. All Rights Reserved page2 Copyright 2006 KDDI Corporation. All Rights Reserved page3 Copyright 2006 KDDI Corporation.

More information

P. 2 P. 4 P. 5 P. 6 P. 7 P. 9 P.10 P.12 P.13 P.14 P.14 P.15 P.17 P.18 P.20 P P P P P.25 P.27 P.28 Copyright 2016 JAPAN POST BA

P. 2 P. 4 P. 5 P. 6 P. 7 P. 9 P.10 P.12 P.13 P.14 P.14 P.15 P.17 P.18 P.20 P P P P P.25 P.27 P.28 Copyright 2016 JAPAN POST BA 201729 3 1 2016 8 12 P. 2 P. 4 P. 5 P. 6 P. 7 P. 9 P.10 P.12 P.13 P.14 P.14 P.15 P.17 P.18 P.20 P.21 10 P.22 11 P.23 12 P.24 13 P.25 P.27 P.28 Copyright 2016 JAPAN POST BANK CO., LTD. All Rights Reserved.

More information

P. 2 P. 4 P. 5 P. 6 P. 7 P. 9 P P.11 P.14 P.15 P.16 P.16 P.17 P.19 P.20 P.22 P P P P P P P P P

P. 2 P. 4 P. 5 P. 6 P. 7 P. 9 P P.11 P.14 P.15 P.16 P.16 P.17 P.19 P.20 P.22 P P P P P P P P P 201628 3 2016 5 13 P. 2 P. 4 P. 5 P. 6 P. 7 P. 9 P.10 2016 P.11 P.14 P.15 P.16 P.16 P.17 P.19 P.20 P.22 P.23 10 P.24 11 P.26 12 P.27 13 P.28 14 P.28 15 P.29 16 P.30 17 P.31 P.33 P.34 Copyright 2016 JAPAN

More information

š ( š ) 7,930,123,759 7,783,750, ,887, ,887 3,800,369 2,504,646,039 i 200,000,000 1,697,600, ,316.63fl 306,200,

š ( š ) 7,930,123,759 7,783,750, ,887, ,887 3,800,369 2,504,646,039 i 200,000,000 1,697,600, ,316.63fl 306,200, š ( š ) (Ÿ ) J lllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll ¾ 907,440,279 16 17. 3.30 23,805,381,307 7,603,591,483 16,201,789,824 15,716,666,214 (400,000) 1,205,390,461 200,000,000 200,000,000

More information

Copyright All Rights Reserved. -2 -!

Copyright All Rights Reserved. -2 -! http://ameblo.jp/admarketing/ Copyright All Rights Reserved. -2 -! Copyright All Rights Reserved. -3- Copyright All Rights Reserved. -4- Copyright All Rights Reserved. -5 - Copyright All Rights Reserved.

More information

untitled

untitled http://www.riskdatabank.co.jp The of Japan, Ltd. All rights reserved. 2 The of Japan, Ltd. All rights reserved. 3 The of Japan, Ltd. All rights reserved. 4 The of Japan, Ltd. All rights reserved. 5 The

More information

untitled

untitled 24 591324 25 0101 0002 0101 0005 0101 0009 0101 0012 0101 0013 0101 0015 0101 0029 0101 0031 0101 0036 0101 0040 0101 0041 0101 0053 0101 0055 0101 0061 0101 0062 0101 0004 0101 0006 0101 0008 0101 0012

More information

IPA:セキュアなインターネットサーバー構築に関する調査

IPA:セキュアなインターネットサーバー構築に関する調査 Copyright 2003 IPA, All Rights Reserved. Copyright 2003 IPA, All Rights Reserved. Copyright 2003 IPA, All Rights Reserved. Copyright 2003 IPA, All Rights Reserved. Copyright 2003 IPA, All Rights Reserved.

More information

Microsoft Word - 最終版 バックせどりismマニュアル .docx

Microsoft Word - 最終版 バックせどりismマニュアル .docx ism ISM ISM ISM ISM ISM ISM Copyright (c) 2010 All Rights Reserved. Copyright (c) 2010 All Rights Reserved. Copyright (c) 2010 All Rights Reserved. ISM Copyright (c) 2010 All Rights Reserved. Copyright

More information

官報(号外第196号)

官報(号外第196号) ( ) ( ) š J lllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll ¾ 12 13. 3.30 23,850,358,060 7,943,090,274 15,907,267,786 17,481,184,592 (354,006) 1,120,988,000 4,350,000 100,000 930,000 3,320,000

More information

Oracle Web Conferencing Oracle Collaboration Suite 2 (9.0.4) Creation Date: May 14, 2003 Last Update: Jan 21, 2005 Version: 1.21

Oracle Web Conferencing Oracle Collaboration Suite 2 (9.0.4) Creation Date: May 14, 2003 Last Update: Jan 21, 2005 Version: 1.21 Oracle Web Conferencing Oracle Collaboration Suite 2 (9.0.4) Creation Date: May 14, 2003 Last Update: Jan 21, 2005 Version: 1.21 ... 2... 3...3...4...5 Oracle9i Platform...10 Oracle Collaboration Suite...12...15...23

More information

Oracle Lite Tutorial

Oracle Lite Tutorial GrapeCity -.NET with GrapeCity - FlexGrid Creation Date: Nov. 30, 2005 Last Update: Nov. 30, 2005 Version: 1.0 Document Control Internal Use Only Author Hiroshi Ota Change Logs Date Author Version Change

More information

KDDI

KDDI Copyright 2007 KDDI Corporation. All Rights Reserved page.1 Copyright 2007 KDDI Corporation. All Rights Reserved page.2 Copyright 2007 KDDI Corporation. All Rights Reserved page.3 Copyright 2007 KDDI Corporation.

More information

time.book

time.book BEAWebLogic Server WebLogic Time Services ªªªª ªªª ª BEA WebLogic Server ªªª ª ª 7.0 ªª ª ª u : 2002 6 28 m Copyright 2002, BEA Systems, Inc. All Rights Reserved. ÑÔÒÏÏÎÆÍËÔÓÕÎÖÊÂBEA Systems, Inc. Ê Ó

More information

dekiru_asa

dekiru_asa 11 10 4 4 1 2 3 4 2 4 6 10 12 16 20 2 1 3 1 4 2 5 2 6 3 3 7 8 9 3 3 10 4 1 11 4 2 3 4 5 1 2 3 12 4 5 5 13 14 6 7 8 9 10 11 5 15 6 1 2 3 16 17 1 2 3 6 18 1 2 3 19 6 6 1 2 v 3 20 7 1 2 3 1 7 21 22 2 3 4

More information

CAC

CAC VOL.24NO.1 61 IMS Transaction 3270 DataBase Transaction OS/370 IMS Traditional Transaction Web Browser Transaction Internet WWW AP IIS APache WebLogic Websphere DataBase Oracle DB2 SQL Server Web Browser

More information

š ( š ) (6) 11,310, (3) 34,146, (2) 3,284, (1) 1,583, (1) 6,924, (1) 1,549, (3) 15,2

š ( š ) (6) 11,310, (3) 34,146, (2) 3,284, (1) 1,583, (1) 6,924, (1) 1,549, (3) 15,2 š ( š ) ( ) J lllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll ¾ 13 14. 3.29 23,586,164,307 6,369,173,468 17,216,990,839 17,557,554,780 (352,062) 1,095,615,450 11,297,761,775 8,547,169,269

More information

FileMaker ODBC and JDBC Guide

FileMaker ODBC and JDBC Guide FileMaker 13 ODBC JDBC 2004-2013 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker Bento FileMaker, Inc. FileMaker WebDirect Bento FileMaker,

More information

FileMaker 16 ODBC と JDBC ガイド

FileMaker 16 ODBC と JDBC ガイド FileMaker 16 ODBC JDBC 2004-2017 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMakerFileMaker Go FileMaker, Inc. FileMaker WebDirect FileMaker

More information

P. 2 P. 4 P. 5 P. 6 P. 7 P. 9 P P.11 P.13 P.15 P.16 P.17 P.17 P.18 P.20 P.21 P.23 P P P P P P P P.31

P. 2 P. 4 P. 5 P. 6 P. 7 P. 9 P P.11 P.13 P.15 P.16 P.17 P.17 P.18 P.20 P.21 P.23 P P P P P P P P.31 201729 3 2017 5 15 P. 2 P. 4 P. 5 P. 6 P. 7 P. 9 P.10 2017 P.11 P.13 P.15 P.16 P.17 P.17 P.18 P.20 P.21 P.23 P.24 10 P.25 11 P.27 12 P.28 13 P.29 14 P.29 15 P.30 16 P.31 17 P.32 P.34 P.35 Copyright 2017

More information

20050314_02-4.ppt

20050314_02-4.ppt Oracle Database 10g Oracle XML DB 2005 3 14 1 Agenda Oracle XML DB XML SQL Oracle Database 10g Release 2 Copyright Oracle Corporation, 2005 All right reserved. 2 XML Oracle Database 10g Release 2 Oracle

More information

untitled

untitled mitsuya Copyright (C) 2007. All Rights Reserved. 1/1 mitsuya Copyright (C) 2007. All Rights Reserved. 2/2 mitsuya Copyright (C) 2007. All Rights Reserved. 3/3 mitsuya Copyright (C) 2007. All Rights Reserved.

More information

226

226 226 227 Main ClientThread Request Channel WorkerThread Channel startworkers takerequest requestqueue threadpool WorkerThread channel run Request tostring execute name number ClientThread channel random

More information

untitled

untitled œ ( œ ) œ 847,120 2,343,446 2,343,446 45,242 25. 5.17 6,472,966 6,472,966 6,472,966 972,332 972,332 5,500,000 5,500,000 634 634 2,053,480 1,423,820 27,053 79,255 523,352 4,419,486 95,352 4,300,204 4,300,204

More information

データ構造とアルゴリズム論

データ構造とアルゴリズム論 15 11 11 Java 21 231-0811 32 152-0033 1 Java 3-5,55,63,39,87,48,70,35,77,59,44 3-5 3-7 score2.txt 75 15 11 11 5-1 3-7 jbuttonread jbuttondisplay jlabelmessage jtextfieldname jtextfieldtokuten

More information

- 2 Copyright (C) 2009. All Rights Reserved.

- 2 Copyright (C) 2009. All Rights Reserved. - 2 Copyright (C) 2009. All Rights Reserved. - 3 Copyright (C) 2009. All Rights Reserved. - 4 Copyright (C) 2009. All Rights Reserved. - 5 Copyright (C) 2009. All Rights Reserved. - 6 Copyright (C) 2009.

More information

Q&A集

Q&A集 & ver.2 EWEB-3C-N080 PreSerV for Web MapDataManager & i 1... 1 1.1... 1 1.2... 2 1.3... 6 1.4 MDM. 7 1.5 ( )... 9 1.6 ( )...12 1.7...14 1.8...15 1.9...16 1.10...17 1.11...18 1.12 19 1.13...20 1.14...21

More information

4D Draw

4D Draw 4D Draw Windows /Mac OS 4D Copyright 2007 4D SAS All rights reserved.. DR SET GLOBAL PREFERENCES vbind:=dr

More information

Ÿ ( Ÿ ) Ÿ šœš 100,000 10,000,000 10,000,000 3,250,000 1,000,000 24,350,000 5,000,000 2,500,000 1,200,000 1,000,000 2,960,000 7,000,000 1,500,000 2,200

Ÿ ( Ÿ ) Ÿ šœš 100,000 10,000,000 10,000,000 3,250,000 1,000,000 24,350,000 5,000,000 2,500,000 1,200,000 1,000,000 2,960,000 7,000,000 1,500,000 2,200 šœ Ÿ ( Ÿ ) Ÿ 3,658,819,708 612,940,933 1,441,054,976 1,536,693,282 369,033,491 1,167,659,791 68,105,057 25,460 7,803,540,263 1,713,934,550 541,531,413 702,848,302 11,827 1,552,629,488 23,421,737,374 2,572,144,704

More information

Gartner Day

Gartner Day J2EE 1 J2EE C AP 2 J2EE AP DD java *.class java *.class java *.class *.class DD EAR, WAR, JAR orionapplicationclient.xmweb.xmapplication.jar.xml orion- orion-ejb- ml Oracle Application Server 10g *.jsp

More information

Part1 159 a a

Part1 159 a a Tomcat 158 Part1 159 a a Tomcat hello World!

More information

Exam : 1z1-809-JPN Title : Java SE 8 Programmer II Vendor : Oracle Version : DEMO Get Latest & Valid 1z1-809-JPN Exam's Question and Answers 1 from Ac

Exam : 1z1-809-JPN Title : Java SE 8 Programmer II Vendor : Oracle Version : DEMO Get Latest & Valid 1z1-809-JPN Exam's Question and Answers 1 from Ac Actual4Test http://www.actual4test.com Actual4test - actual test exam dumps-pass for IT exams Exam : 1z1-809-JPN Title : Java SE 8 Programmer II Vendor : Oracle Version : DEMO Get Latest & Valid 1z1-809-JPN

More information

intra-mart Accel Platform — イベントナビゲータ 開発ガイド   初版  

intra-mart Accel Platform — イベントナビゲータ 開発ガイド   初版   Copyright 2013 NTT DATA INTRAMART CORPORATION 1 Top 目次 intra-mart Accel Platform イベントナビゲータ開発ガイド初版 2013-07-01 改訂情報概要イベントフローの作成 更新 削除をハンドリングするイベントフローを非表示にする回答を非表示にするリンクを非表示にするタイトル コメントを動的に変更するリンク情報を動的に変更するナビゲート結果のリンクにステータスを表示する

More information

how-to-decide-a-title

how-to-decide-a-title Contents 3 4 5 6 8 13 13 14 14 15 15 18 19 Copyright 2014 All Rights Reserved. 2 / 21 URL AdobeReader ( ) http://www.adobe.co.jp/products/acrobat/readstep2.html Copyright 2014 All Rights Reserved. 3 /

More information

FileMaker 15 ODBC と JDBC ガイド

FileMaker 15 ODBC と JDBC ガイド FileMaker 15 ODBC JDBC 2004-2016 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker FileMaker Go FileMaker, Inc. FileMaker WebDirect FileMaker,

More information

JAVA H13 OISA JAVA 1

JAVA H13 OISA JAVA 1 JAVA H13 OISA JAVA 1 ...3 JAR...4 2.1... 4 2.2... 4...5 3.1... 5 3.2... 6...7 4.1... 7 4.2... 7 4.3... 10 4.4...11 4.5... 12 4.6... 13 4.7... 14 4.8... 15 4.9... 16...18 5.1... 18 5.2...19 2 Java Java

More information

URL AdobeReader http://www.adobe.co.jp/products/acrobat/readstep2.html - 2 Copyright (C) 2008. All Rights Reserved.

URL AdobeReader http://www.adobe.co.jp/products/acrobat/readstep2.html - 2 Copyright (C) 2008. All Rights Reserved. URL AdobeReader http://www.adobe.co.jp/products/acrobat/readstep2.html - 2 Copyright (C) 2008. All Rights Reserved. - 3 Copyright (C) 2008. All Rights Reserved. ASP() ASP PayPal - 4 Copyright (C) 2008.

More information

š ( š ) ,400, , ,893, ,743, ,893, ,893, ,658,475 35,884,803 2,167,037 7,189,060 55,417,575 81,08

š ( š ) ,400, , ,893, ,743, ,893, ,893, ,658,475 35,884,803 2,167,037 7,189,060 55,417,575 81,08 Ÿ š ( š ) 1,970,400 5,000,000 12. 3.26 180,553,493 9. 9.29 41,772,995 10. 9.28 50,075,163 13. 2. 2 1,000,000 10.12.27 j 19,373,160 13. 4. 1 j 1,200,000 38. 3.19 j 1,100,000 6. 9.22 14. 1. 8 0 0 14. 3.13

More information

オラクルのバックアップとリカバリの必須要件

オラクルのバックアップとリカバリの必須要件 WHITE PAPER 1 WHITE PAPER...3...3...4 NetBackup Oracle...6...7 VERITAS NetBackup Oracle Agent...7 VERITAS NetBackup Oracle Agent...8 VERITAS NetBackup Oracle...8...9 GUI RMAN...9 VERITAS NetBackup Oracle

More information

健康保険組合のあゆみ_top

健康保険組合のあゆみ_top (1912) (1951) 2,00024,000 (1954) (1958) (1962) (1965) (1968) (1969) (1971) (1972) (1973) (1974) (1976) (1978) (1980) (1982) (1983) (1984) (1985) (1987) (1988) (1989) (1990) (1991) (1992) (1994) (1995)

More information

Java演習(4) -- 変数と型 --

Java演習(4)   -- 変数と型 -- 50 20 20 5 (20, 20) O 50 100 150 200 250 300 350 x (reserved 50 100 y 50 20 20 5 (20, 20) (1)(Blocks1.java) import javax.swing.japplet; import java.awt.graphics; (reserved public class Blocks1 extends

More information

Copyright 2010 Sumitomo Mitsui Banking Corporation. All Rights Reserved.

Copyright 2010 Sumitomo Mitsui Banking Corporation. All Rights Reserved. 1 2 3 4 5 3 1 2 5 4 2Copyright 2010 Sumitomo Mitsui Banking Corporation. All Rights Reserved. Copyright 2010 Sumitomo Mitsui Banking Corporation. All Rights Reserved.3 Contents 4Copyright 2010 Sumitomo

More information

…_…C…L…fi…J…o†[fiü“ePDF/−mflF™ƒ

…_…C…L…fi…J…o†[fiü“ePDF/−mflF™ƒ 80 80 80 3 3 5 8 10 12 14 14 17 22 24 27 33 35 35 37 38 41 43 46 47 50 50 52 54 56 56 59 62 65 67 71 74 74 76 80 83 83 84 87 91 91 92 95 96 98 98 101 104 107 107 109 110 111 111 113 115

More information

: : : TSTank 2

: : : TSTank 2 Java (8) 2008-05-20 Lesson6 Lesson5 Java 1 Lesson 6: TSTank1, TSTank2, TSTank3 java 2 car1 car2 Car car1 = new Car(); Car car2 = new Car(); car1.setcolor(red); car2.setcolor(blue); car2.changeengine(jet);

More information

imt_817_tuning_11_1822.PDF

imt_817_tuning_11_1822.PDF intermedia Text Tuning Guide Creation Date: Mar 12, 2001 Last Update: Apr 19, 2001 Version: 1.1 4 intermedia Text 4 5 5 5 6 6 intermedia 6 6 6 7 7 7 7 8 8 8 8 R816 9 10 10 10 12 12 13 14 15 catalog index

More information

Javaセキュアコーディングセミナー東京 第3回 入出力(File, Stream)と例外時の動作 演習解説

Javaセキュアコーディングセミナー東京 第3回 入出力(File, Stream)と例外時の動作 演習解説 Java セキュアコーディングセミナー東京第 3 回入出力と例外時の動作 演習解説 2012 年 11 月 11 日 ( 日 ) JPCERT コーディネーションセンター脆弱性解析チーム戸田洋三 1 Hands-on Exercises コンパイルエラーに対処しよう ファイルからのデータ入力を実装しよう 2 Hands-on Exercise(1) サンプルコードの コンパイルエラーに対処しよう 3

More information

Web JDBC JDBC Java JDBC DataBase Web CHtmlView...

Web JDBC JDBC Java JDBC DataBase Web CHtmlView... Web-DB 13 1... 3 2 Web... 4 2.1 JDBC...4 2.1.1 JDBC...4 2.1.2 Java JDBC...5 2.1.3 DataBase...5 2.1.4...6 2.1.5...6 2.2...6 2.3 Web...10 3... 15 3.1 CHtmlView...15 3.2...16 3.2.1...16 3.2.2...16 3.2.3...17

More information

Oracle DatabaseとIBM DB2 UDBの技術的比較: パフォーマンスを重視

Oracle DatabaseとIBM DB2 UDBの技術的比較: パフォーマンスを重視 Oracle Database IBM DB2 UDB : 2005 9 Oracle Database IBM DB2 UDB :... 3... 4 Oracle Database Oracle Database IBM DB2... 4... 5... 5... 6... 7... 9... 10... 10 Oracle Database 10g Oracle Real Application

More information

Oracle Lite Tutorial

Oracle Lite Tutorial GrapeCity -.NET with GrapeCity - InputMan Creation Date: Nov. 30, 2005 Last Update: Nov. 30, 2005 Version: 1.0 GrapeCity Microsoft Visual Studio.NET VB.NET Oracle Tips InputMan InputMan Oracle.NET Oracle

More information

( ) œ 100, ,000 4,830,000 49,500,000 10,000,000 20,000,000 (1) 11,759, ,538, ,729 11,240,000 11,034

( ) œ 100, ,000 4,830,000 49,500,000 10,000,000 20,000,000 (1) 11,759, ,538, ,729 11,240,000 11,034 Ÿ ( ) œ 0 0 15. 3.18 70,877,493 629,493 70,248,000 70,128,000 70,248,000 550,000 31,698,000 38,000,000 200,000 200,000 69,928,000 68,800,000 1,128,000 500,000 50,000 j 70,000 j 160,000 j 380,000 100,000

More information

FileMaker ODBC と JDBC ガイド

FileMaker ODBC と JDBC ガイド FileMaker ODBC JDBC 2004-2019 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMakerFileMaker CloudFileMaker Go FileMaker, Inc. FileMaker

More information

1

1 EX EX 1....- 6 - EX...- 6 - EX...- 6 -...- 7-2....- 8 -...- 8 -...- 10-3....- 11 -...- 11 -...- 11 -...- 15 -...- 17 -...- 20-4....- 26 - EX...- 26-5....- 27 -...- 27 -...- 27 -...- 28 -...- 28 -...- 29

More information

Ÿ ( ) Ÿ 7,488,161,218 7,396,414,506 91,708,605 38,107 4,376,047 2,037,557,517 1,000,000 i 200,000,000 1,697,600, ,316.63fl 306,200,000 14

Ÿ ( ) Ÿ 7,488,161,218 7,396,414,506 91,708,605 38,107 4,376,047 2,037,557,517 1,000,000 i 200,000,000 1,697,600, ,316.63fl 306,200,000 14 Ÿ ( ) (Ÿ ) Ÿ J lllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll ¾ 17 18. 3.30 24,222,550,856 8,088,715,093 16,133,835,763 14,673,176,237 (400,000) 1,265,253,000 201,000,000 1,000,000 200,000,000

More information

( ) œ œ 50, , , , ,000 f 240, ,000 f21 30,000 1,000, ,725,367 18,680,993 9,044,374 11,219,342 9,000,000 9,

( ) œ œ 50, , , , ,000 f 240, ,000 f21 30,000 1,000, ,725,367 18,680,993 9,044,374 11,219,342 9,000,000 9, ( ) œ 58,287,360 13. 4.25 15. 3.14 513,273,280 131,411,617 381,861,663 329,679,509 7,100,000 1,500,000 5,600,000 374,761,663 374,742,000 19,663 18,006,875 12,382,661 114,390 804,787 4,705,037 311,672,634

More information

{:from => Java, :to => Ruby } Java Ruby KAKUTANI Shintaro; Eiwa System Management, Inc.; a strong Ruby proponent http://kakutani.com http://www.amazon.co.jp/o/asin/4873113202/kakutani-22 http://www.amazon.co.jp/o/asin/477413256x/kakutani-22

More information

Oracle9i JDeveloper R9.0.3 チュートリアル

Oracle9i JDeveloper R9.0.3 チュートリアル Oracle9i JDeveloper 9.0.3 JavaServer Pages Creation Date: Jan. 27, 03 Last Update: Feb. 13, 03 Version: 1.0 ... 2... 2... 2 JDeveloper JSP... 3... 4 JSP... 5 JSP... 6... 7...10 JDeveloper... 12 TLD...

More information

[ ][ ] HTML [ ] HTML HTML

[ ][ ] HTML [ ] HTML HTML COPYRIGHT 2009 MAGREX, ALL RIGHTS RESERVED. [ ][ ] HTML [ ] HTML HTML [ ][ ] / / / [ ][ ] HTML HTML URL URL [ ][ ] Cellpadding Cellspacing ID ID URL [ ][ ] ID ID URL [ ][ ] ID ID URL [ ][ ] [ ][ ] [ ]

More information

2. 1. 1. 2. 2. 3. 3. 3. 1. 1. 2. 3. 2

2. 1. 1. 2. 2. 3. 3. 3. 1. 1. 2. 3. 2 DTR-30.6 Ja 2. 1. 1. 2. 2. 3. 3. 3. 1. 1. 2. 3. 2 4. 1. 3. 4. 1. 1. 2. 2. 3 1. 2. 3. 1. 4 2. 3. 1. 2. 3. 4. 5. 5 1. 1. 2. 3. 2. 4. 3. 4. 5. 6. 7. 2. 3. 1. 6 PC NAS 1. 2. 3. 4. 5. 1. 2. 3. 4. 5. 1. 2. 3.

More information

intra-mart Accel Platform — イベントナビゲータ 開発ガイド   初版   None

intra-mart Accel Platform — イベントナビゲータ 開発ガイド   初版   None クイック検索検索 目次 Copyright 2013 NTT DATA INTRAMART CORPORATION 1 Top 目次 intra-mart Accel Platform イベントナビゲータ開発ガイド初版 2013-07-01 None 改訂情報概要イベントフローの作成 更新 削除をハンドリングするイベントフローを非表示にする回答を非表示にするリンクを非表示にするタイトル コメントを動的に変更するリンク情報を動的に変更するナビゲート結果のリンクにステータスを表示する

More information

Ÿ Ÿ ( ) Ÿ , , , , , , ,000 39,120 31,050 30,000 1,050 52,649, ,932,131 16,182,115 94,75

Ÿ Ÿ ( ) Ÿ , , , , , , ,000 39,120 31,050 30,000 1,050 52,649, ,932,131 16,182,115 94,75 Ÿ ( ) Ÿ 100,000 200,000 60,000 60,000 600,000 100,000 120,000 60,000 120,000 60,000 120,000 120,000 120,000 120,000 120,000 1,200,000 240,000 60,000 60,000 240,000 60,000 120,000 60,000 300,000 120,000

More information

untitled

untitled š ( ) 300,000 180,000 100,000 120,000 60,000 120,000 240,000 120,000 170,000 240,000 100,000 99,000 120,000 72,000 100,000 450,000 72,000 60,000 100,000 100,000 60,000 60,000 100,000 200,000 60,000 124,000

More information