com.ibm.etools.egl.jsfsearch.tutorial.doc.ps

Size: px
Start display at page:

Download "com.ibm.etools.egl.jsfsearch.tutorial.doc.ps"

Transcription

1 EGL JSF

2 ii EGL JSF

3 EGL JSF : Web : SQL JSF Web : OR OR OR : JSF : SearchLibrary.egl customersearch.egl SearchLibrary.egl customersearch.egl SearchLibrary.egl customersearch.egl SearchLibrary.egl customersearch.egl.. 33 iii

4 iv EGL JSF

5 EGL JSF EGL JSF EGL ( ) v SQL v EGL v JSF 60 EGL ( ) EGL Hello world PDF EGL JSF EGL ( ) EGL JSF Web Web Web Web Web v SQL v EGL v JSF 1

6 60 EGL ( ) 2 (AND ) AND 2 (OR ) 2 EGL JSF

7 1: EGL EGL-JSF Web 1. Web 2. EGL 3. EGL JSF 4. EGL EGL 3 4 Web 1. EGLWeb WebContent Web Web 4. Web 5. ( ) customersearch.jsp 6. /EGLWeb/WebContent A_gray.htpl Customer Search 11. Enter 3 3 EGL 2 searchterms searchterms searchresults[] 1. EGL Customer Search EGL Customer 4. searchterms EGL Web EGL JSF 3

8 7. OK 8. Customer Search EGL Customer 11. searchresults EGL Web 14. OK 2 1. JSF 2. Customer Search searchterms - Customer LastName State Submit OK EGL JSF

9 12. Submit { } Enter Submit Faces 14. Faces Submit 2 5 Customer(s) found. Search again? ( 5?) 15. Submit 2 searchresults - Customer[] 16. ( ) LastName Address State EGL JSF 5

10 EGL JSF

11 v EGL Web v EGL v Web EGL 2: 2: Web EGL EGL Web JSF 1. EGLWeb EGLSource EGL EGL JSF 7

12 2. EGL SearchLibrary 3. libraries EGL 4. EGL 5. EGL 6. package libraries; library SearchLibrary type BasicLibrary JSF SQL 1. SearchLibrary End function NameAndStateSearch_And(lname string in, state char(2) in, customer Customer[]) get customer; 3 v lname v state v customer lname state SQL 2. package libraries; import import eglderbyr7.data.customer; 3. get customer customer get customer customer SQL 4. get customer customer SQL SQL get customer EGL get customer SQL SQL 8 EGL JSF

13 get customer 5. from EGL.CUSTOMER Enter 1 6. from EGL.CUSTOMER where EGL.CUSTOMER.LAST_NAME like :lname and EGL.CUSTOMER."STATE" = :state EGL SQL EGL.CUSTOMER.LAST_NAME eglderbyr7.data :lname :state SQL EGL STATE state EGL SQL EGL ID EGL JSF 9

14 where SQL where defaultselectcondition Ctrl+G ( X ) 27 2 SearchLibrary.egl JSF 1. customersearch.jsp customersearch.jsp JSF ( ) searchresults Customer[0]; searchterms Customer; 4. 2 resultmessage char(80); numberofresults int; Web searchterms searchresults 5. JSF function searchfunction() searchterms.lastname = searchterms.lastname::"%"; SearchLibrary.NameAndStateSearch_And( searchterms.lastname, searchterms.state, searchresults); resultmessage = " customer(s) found."; numberofresults = searchresults.getsize(); 6. package jsfhandlers; import import libraries.searchlibrary; onprerer 7. JSF function onprerer() if (searchresults.getsize() == 0) resultmessage = "No customers found or no search criteria entered."; 8. onprererfunction JSF 10 EGL JSF

15 handler customersearch type JSFHandler {onconstructionfunction = onconstruction, onprererfunction = onprerer, view = "customersearch.jsp"} v searchterms searchresults Customer v searchfunction Submit NameAndStateSearch_And v Sm Sm% Smith Smiley v / 9. EGL JSF 11

16 customersearch.egl ( X ) 28 2 customersearch.egl Web JSF 1. customersearch.jsp 2. JSF 3. Submit numberofresults 4. resultmessage 5. Submit searchfunction() 12 EGL JSF

17 6. 7. a. customersearch.jsp b. Web LastName State Submit / LastName F State NJ AND OR State EGL v EGL v EGL JSF v JSF Web 3: OR EGL JSF 13

18 3: OR AND OR OR AND OR 1. SearchLibrary.egl 2. function NameAndStateSearch_Or(lname string in, state char(2) in, customer Customer[]) get customer with #sql{ select EGL.CUSTOMER.CUSTOMER_ID, EGL.CUSTOMER.FIRST_NAME, EGL.CUSTOMER.LAST_NAME, EGL.CUSTOMER.PASSWORD, EGL.CUSTOMER.PHONE, EGL.CUSTOMER. _ADDRESS, EGL.CUSTOMER.STREET, EGL.CUSTOMER.APARTMENT, EGL.CUSTOMER.CITY, EGL.CUSTOMER."STATE", EGL.CUSTOMER.POSTALCODE, EGL.CUSTOMER.DIRECTIONS from EGL.CUSTOMER where EGL.CUSTOMER.LAST_NAME like :lname or EGL.CUSTOMER."STATE" = :state order by EGL.CUSTOMER.CUSTOMER_ID asc }; 14 EGL JSF

19 NameAndStateSearch_And where AND OR Java Ctrl+G 5. SearchLibrary.egl ( X ) 29 3 SearchLibrary.egl 2 1. customersearch.jsp 2. Enter 3. Faces AND 9. AND EGL JSF 15

20 OR 12. OR JSF 1. customersearch.egl EGL JSF

21 andor char(3); AND OR 3. searchfunction function searchfunction() searchterms.lastname = searchterms.lastname+"%"; if (andor == "AND") SearchLibrary.NameAndStateSearch_And( searchterms.lastname, searchterms.state, searchresults); else SearchLibrary.NameAndStateSearch_Or( searchterms.lastname, searchterms.state, searchresults); resultmessage = "Customer(s) found. Search again?"; numberofresults = searchresults.getsize(); v andor (AND OR) v searchfunction if AND NameAndStateSearch_And NameAndStateSearch_Or customersearch.jsp 6. andor - char(3) 7. searchfunction() State customersearch.egl ( X ) 29 3 customersearch.egl 2 EGL JSF 17

22 v EGL OR v v OR JSF v 4: 4: State SearchLibrary.egl 2. function getallcustomerstates(listofstates string[]) customers Customer[0]; counter int; get customers with #sql{ select EGL.CUSTOMER."STATE" from EGL.CUSTOMER group by EGL.CUSTOMER."STATE" order by EGL.CUSTOMER."STATE" asc }; listofstates.removeall(); for (counter from 1 to customers.getsize() by 1) listofstates.appelement(customers[counter].state); getallcustomerstates v getallcustomers getallcustomerstates Customer STATE 18 EGL JSF

23 v group by EGL.CUSTOMER."STATE" 1 v order by EGL.CUSTOMER."STATE" asc v for state SearchLibrary.egl ( X ) 30 4 SearchLibrary.egl JSF 1. customersearch.jsp 2. customersearch.jsp 3. andor char(3); customerstates string[0]; 4. Function onprerer() 1 SearchLibrary.getAllCustomerStates(customerStates); customersearch.egl ( ) EGL JSF 19

24 v customerstates 1 v onprerer customerstates getallcustomerstates customersearch.egl ( X ) 31 4 customersearch.egl JSF 2 EGL 20 EGL JSF

25 v customerstates v searchterms.state 1. customersearch.jsp 2. STATE Delete 3. Faces 4. STATE 5. searchterms - Customer 6. searchterms - Customer State - State #{customersearch.searchterms.state} searchterms State 9. <selectitems> <selectitems> JSF 10. <selectitems> 11. customerstates - string[] EGL JSF 21

26 12. OK customerstates searchterms Web v v JSF v Web v 5: 22 EGL JSF

27 5: Web JSF Customer State (Customer ) (2 ) (State ) EGL EGL 3 v Customer v fullname Customer v State Customer State 1. SearchLibrary.egl 2. function getonestate(state Statetable) get state; statetable Statetable.egl 3. SearchLibrary.egl package libraries; import eglderbyr7.data.statetable; 4. Record customizedresult type basicrecord fullname string {displayname = "Full Name"}; string {displayname = " Address"}; statename string {displayname = "State"}; EGL JSF 23

28 : customizedresult SearchLibrary.egl ( X ) 32 5 SearchLibrary.egl 1. customersearch.jsp 2. customersearch.jsp 3. JSF customerstates string[0]; allrecords customizedresult[0]; 4. JSF package jsfhandlers; import import libraries.customizedresult; 5. JSF function generatecustomresults(passedresults Customer[]) allrecords.removeall(); onerecord customizedresult; counter int = 1; state Statetable; // 1 while (counter <= (passedresults.getsize())) onerecord.fullname = passedresults[counter].firstname :: " " :: passedresults[counter].lastname; onerecord. = passedresults[counter]. address; state.stateabbrev = passedresults[counter].state; SearchLibrary.getOneState(state); onerecord.statename = state.statename; allrecords.appelement(onerecord); counter = counter + 1; searchfunction 6. JSF searchfunction generatecustomresults (searchresults); 7. JSF EGL JSF

29 allrecords customersearch.egl ( X ) 33 5 customersearch.egl 1. customersearch.jsp 2. a. b. c. Delete 3. allrecords - customizedresult[] 4. ( ) EGL JSF 25

30 FirstName LastName Fullname State 2 v v v JSF v Web v 5: EGL JSF v v EGL 26 EGL JSF

31 v EGL v EGL SQL v Java Server Faces Web v v v updatecustomer.jsp allcustomers.jsp v JavaServer Faces Web (Display dynamic information on Web pages with JavaServer Faces) Web (Design the layout and structure of your Web site) v 2 SearchLibrary.egl v 28 2 customersearch.egl v 29 3 SearchLibrary.egl v 29 3 customersearch.egl v 30 4 SearchLibrary.egl v 31 4 customersearch.egl v 32 5 SearchLibrary.egl v 33 5 customersearch.egl 2 SearchLibrary.egl 2 SearchLibrary.egl ( X ) package libraries; import eglderbyr7.data.customer; library SearchLibrary type BasicLibrary function NameAndStateSearch_And(lname string in, state char(2) in, customer Customer[]) get customer with #sql{ select EGL.CUSTOMER.CUSTOMER_ID, EGL.CUSTOMER.FIRST_NAME, EGL.CUSTOMER.LAST_NAME, EGL.CUSTOMER.PASSWORD, EGL.CUSTOMER.PHONE, EGL JSF 27

32 EGL.CUSTOMER. _ADDRESS, EGL.CUSTOMER.STREET, EGL.CUSTOMER.APARTMENT, EGL.CUSTOMER.CITY, EGL.CUSTOMER."STATE", EGL.CUSTOMER.POSTALCODE, EGL.CUSTOMER.DIRECTIONS from EGL.CUSTOMER where EGL.CUSTOMER.LAST_NAME like :lname and EGL.CUSTOMER."STATE" = :state order by EGL.CUSTOMER.CUSTOMER_ID asc }; 7 2: 2 customersearch.egl 2 customersearch.egl ( X ) package jsfhandlers; import eglderbyr7.data.*; import libraries.searchlibrary; handler customersearch type JSFHandler {onconstructionfunction = onconstruction, onprererfunction = onprerer, view = "customersearch.jsp"} searchterms Customer; searchresults Customer[0]; resultmessage char(80); numberofresults int; function searchfunction() searchterms.lastname = searchterms.lastname::"%"; SearchLibrary.NameAndStateSearch_And( searchterms.lastname, searchterms.state, searchresults); resultmessage = " customer(s) found."; numberofresults = searchresults.getsize(); function onprerer() if (searchresults.getsize() == 0) resultmessage = "No customers found or no search criteria entered."; function onconstruction() 7 2: 28 EGL JSF

33 3 SearchLibrary.egl 3 SearchLibrary.egl ( X ) package libraries; import data.customer; library SearchLibrary type BasicLibrary function NameAndStateSearch_And(lname string in, state char(2) in, customer Customer[]) get customer with #sql{ select EGL.CUSTOMER.CUSTOMER_ID, EGL.CUSTOMER.FIRST_NAME, EGL.CUSTOMER.LAST_NAME, EGL.CUSTOMER.PASSWORD, EGL.CUSTOMER.PHONE, EGL.CUSTOMER. _ADDRESS, EGL.CUSTOMER.STREET, EGL.CUSTOMER.APARTMENT, EGL.CUSTOMER.CITY, EGL.CUSTOMER."STATE", EGL.CUSTOMER.POSTALCODE, EGL.CUSTOMER.DIRECTIONS from EGL.CUSTOMER where EGL.CUSTOMER.LAST_NAME like :lname and EGL.CUSTOMER."STATE" = :state order by EGL.CUSTOMER.CUSTOMER_ID asc }; function NameAndStateSearch_Or(lname string in, state char(2) in, customer Customer[]) get customer with #sql{ select EGL.CUSTOMER.CUSTOMER_ID, EGL.CUSTOMER.FIRST_NAME, EGL.CUSTOMER.LAST_NAME, EGL.CUSTOMER.PASSWORD, EGL.CUSTOMER.PHONE, EGL.CUSTOMER. _ADDRESS, EGL.CUSTOMER.STREET, EGL.CUSTOMER.APARTMENT, EGL.CUSTOMER.CITY, EGL.CUSTOMER."STATE", EGL.CUSTOMER.POSTALCODE, EGL.CUSTOMER.DIRECTIONS from EGL.CUSTOMER where EGL.CUSTOMER.LAST_NAME like :lname or EGL.CUSTOMER."STATE" = :state order by EGL.CUSTOMER.CUSTOMER_ID asc }; 14 3: OR 3 customersearch.egl 3 customersearch.egl ( X ) package jsfhandlers; import eglderbyr7.data.*; import libraries.searchlibrary; handler customersearch type JSFHandler EGL JSF 29

34 {onconstructionfunction = onconstruction, onprererfunction = onprerer, view = "customersearch.jsp"} searchterms Customer; searchresults Customer[0]; resultmessage char(80); numberofresults int; andor char(3); customerstates string[0]; function searchfunction() searchterms.lastname = searchterms.lastname + "%"; if (andor == "AND") SearchLibrary.NameAndStateSearch_And( searchterms.lastname, searchterms.state, searchresults); else SearchLibrary.NameAndStateSearch_Or( searchterms.lastname, searchterms.state, searchresults); resultmessage = " customer(s) found."; numberofresults = searchresults.getsize(); function onprerer() if (searchresults.getsize() == 0) resultmessage = "No customers found or no data entered."; function onconstruction() 14 3: OR 4 SearchLibrary.egl 4 SearchLibrary.egl ( X ) package libraries; import data.customer; library SearchLibrary type BasicLibrary function NameAndStateSearch_And(lname string in, state char(2) in, customer Customer[]) get customer with #sql{ select EGL.CUSTOMER.CUSTOMER_ID, EGL.CUSTOMER.FIRST_NAME, EGL.CUSTOMER.LAST_NAME, EGL.CUSTOMER.PASSWORD, EGL.CUSTOMER.PHONE, EGL.CUSTOMER. _ADDRESS, EGL.CUSTOMER.STREET, EGL.CUSTOMER.APARTMENT, EGL.CUSTOMER.CITY, EGL.CUSTOMER."STATE", EGL.CUSTOMER.POSTALCODE, EGL.CUSTOMER.DIRECTIONS from EGL.CUSTOMER where EGL.CUSTOMER.LAST_NAME like :lname and EGL.CUSTOMER."STATE" = :state order by 30 EGL JSF

35 }; EGL.CUSTOMER.CUSTOMER_ID asc function NameAndStateSearch_Or(lname string in, state char(2) in, customer Customer[]) get customer with #sql{ select EGL.CUSTOMER.CUSTOMER_ID, EGL.CUSTOMER.FIRST_NAME, EGL.CUSTOMER.LAST_NAME, EGL.CUSTOMER.PASSWORD, EGL.CUSTOMER.PHONE, EGL.CUSTOMER. _ADDRESS, EGL.CUSTOMER.STREET, EGL.CUSTOMER.APARTMENT, EGL.CUSTOMER.CITY, EGL.CUSTOMER."STATE", EGL.CUSTOMER.POSTALCODE, EGL.CUSTOMER.DIRECTIONS from EGL.CUSTOMER where EGL.CUSTOMER.LAST_NAME like :lname OR EGL.CUSTOMER."STATE" = :state order by EGL.CUSTOMER.CUSTOMER_ID asc }; function getallcustomerstates(listofstates string[]) customers Customer[0]; counter int; get customers with #sql{ select EGL.CUSTOMER."STATE" from EGL.CUSTOMER group by EGL.CUSTOMER."STATE" order by EGL.CUSTOMER."STATE" asc }; listofstates.removeall(); for (counter from 1 to customers.getsize() by 1) listofstates.appelement(customers[counter].state); 18 4: 4 customersearch.egl 4 customersearch.egl ( X ) package jsfhandlers; import eglderbyr7.data.*; import libraries.searchlibrary; handler customersearch type JSFHandler {onconstructionfunction = onconstruction, onprererfunction = onprerer, view = "customersearch.jsp"} searchterms Customer; searchresults Customer[0]; resultmessage char(80); numberofresults int; andor char(3); customerstates Customer[]; EGL JSF 31

36 function searchfunction() searchterms.lastname = searchterms.lastname+"%"; if (andor == "AND") SearchLibrary.NameAndStateSearch_And(searchTerms.LastName, searchterms.state, searchresults); else SearchLibrary.NameAndStateSearch_Or(searchTerms.LastName, searchterms.state, searchresults); resultmessage = "Customer(s)found. Search again?"; numberofresults = syslib.size(searchresults); function onprerer() SearchLibrary.getAllCustomerStates(customerStates); if (searchresults.getsize() == 0) resultmessage = "No customers found or no search criteria entered."; function onconstruction() 18 4: 5 SearchLibrary.egl 5 SearchLibrary.egl ( X ) package libraries; import data.customer; library SearchLibrary type BasicLibrary function NameAndStateSearch_And(lname string in, state char(2) in, customer Customer[]) get customer with #sql{ select EGL.CUSTOMER.CUSTOMER_ID, EGL.CUSTOMER.FIRST_NAME, EGL.CUSTOMER.LAST_NAME, EGL.CUSTOMER.PASSWORD, EGL.CUSTOMER.PHONE, EGL.CUSTOMER. _ADDRESS, EGL.CUSTOMER.STREET, EGL.CUSTOMER.APARTMENT, EGL.CUSTOMER.CITY, EGL.CUSTOMER."STATE", EGL.CUSTOMER.POSTALCODE, EGL.CUSTOMER.DIRECTIONS from EGL.CUSTOMER where EGL.CUSTOMER.LAST_NAME like :lname and EGL.CUSTOMER."STATE" = :state order by EGL.CUSTOMER.CUSTOMER_ID asc }; function NameAndStateSearch_Or(lname string in, state char(2) in, customer Customer[]) get customer with #sql{ select EGL.CUSTOMER.CUSTOMER_ID, EGL.CUSTOMER.FIRST_NAME, EGL.CUSTOMER.LAST_NAME, EGL.CUSTOMER.PASSWORD, EGL.CUSTOMER.PHONE, EGL.CUSTOMER. _ADDRESS, EGL.CUSTOMER.STREET, 32 EGL JSF

37 EGL.CUSTOMER.APARTMENT, EGL.CUSTOMER.CITY, EGL.CUSTOMER."STATE", EGL.CUSTOMER.POSTALCODE, EGL.CUSTOMER.DIRECTIONS from EGL.CUSTOMER where EGL.CUSTOMER.LAST_NAME like :lname OR EGL.CUSTOMER."STATE" = :state order by EGL.CUSTOMER.CUSTOMER_ID asc }; function getallcustomerstates(listofstates string[]) customers Customer[0]; counter int; get customers with #sql{ select EGL.CUSTOMER."STATE" from EGL.CUSTOMER group by EGL.CUSTOMER."STATE" order by EGL.CUSTOMER."STATE" asc }; listofstates.removeall(); for (counter from 1 to customers.getsize() by 1) listofstates.appelement(customers[counter].state); Function getonestate(state Statetable) get state; Record customizedresult type basicrecord fullname string {displayname = "Full Name"}; string {displayname = " Address"}; statename string {displayname = "State"}; 23 5: 5 customersearch.egl 5 customersearch.egl ( X ) package jsfhandlers; import eglderbyr7.data.*; import libraries.searchlibrary; import libraries.customizedresult; handler customersearch type JSFHandler {onconstructionfunction = onconstruction, onprererfunction = onprerer, view = "customersearch.jsp"} searchterms Customer; searchresults Customer[0]; resultmessage char(80); numberofresults int; andor char(3); customerstates Customer[]; EGL JSF 33

38 allrecords customizedresult[]; function searchfunction() searchterms.lastname = searchterms.lastname+"%"; if (andor == "AND") SearchLibrary.NameAndStateSearch_And(searchTerms.LastName, searchterms.state, searchresults); else SearchLibrary.NameAndStateSearch_Or(searchTerms.LastName, searchterms.state, searchresults); resultmessage = "Customer(s)found. Search again?"; numberofresults = syslib.size(searchresults); generatecustomresults (searchresults); function onprerer() SearchLibrary.getAllCustomerStates(customerStates); if (searchresults.getsize() == 0) resultmessage = "No customers found or no search criteria entered."; function onconstruction() function generatecustomresults(passedresults Customer[]) allrecords.removeall(); onerecord customizedresult; counter int = 1; state statetable; //loop once for each search result returned while (counter <= (passedresults.getsize())) onerecord.fullname = passedresults[counter].firstname :: " " :: passedresults[counter].lastname; onerecord. = passedresults[counter]. address; state.stateabbrev = passedresults[counter].state; SearchLibrary.getOneState(state); onerecord.statename = state.statename; allrecords.appelement(onerecord); counter = counter + 1; 23 5: 34 EGL JSF

provider_020524_2.PDF

provider_020524_2.PDF 1 1 1 2 2 3 (1) 3 (2) 4 (3) 6 7 7 (1) 8 (2) 21 26 27 27 27 28 31 32 32 36 1 1 2 2 (1) 3 3 4 45 (2) 6 7 5 (3) 6 7 8 (1) ii iii iv 8 * 9 10 11 9 12 10 13 14 15 11 16 17 12 13 18 19 20 (2) 14 21 22 23 24

More information

: ORDER BY

: ORDER BY 11 7 8 1 : ORDER BY 1 1.1......................................... 1 1.2......................................... 1 1.3................................ 1 1.4 WHERE SELECT ORDER BY.................. 2 2

More information

1 SQL Server SQL Oracle SQL SQL* Plus PL/SQL 2 SQL Server SQL Server SQL Oracle SQL SQL*Plus SQL Server GUI 1-1 osql 1-1 Transact- SQL SELECTFROM 058

1 SQL Server SQL Oracle SQL SQL* Plus PL/SQL 2 SQL Server SQL Server SQL Oracle SQL SQL*Plus SQL Server GUI 1-1 osql 1-1 Transact- SQL SELECTFROM 058 1 SQL Server SQL Oracle SQL SQL* Plus PL/SQL 2 SQL Server SQL Server SQL Oracle SQL SQL*Plus SQL Server GUI 1-1 osql 1-1 Transact- SQL SELECTFROM 058 2 Excel 1 SQL 1 SQL Server sp_executesql Oracle SQL

More information

44 4 I (1) ( ) (10 15 ) ( 17 ) ( 3 1 ) (2)

44 4 I (1) ( ) (10 15 ) ( 17 ) ( 3 1 ) (2) (1) I 44 II 45 III 47 IV 52 44 4 I (1) ( ) 1945 8 9 (10 15 ) ( 17 ) ( 3 1 ) (2) 45 II 1 (3) 511 ( 451 1 ) ( ) 365 1 2 512 1 2 365 1 2 363 2 ( ) 3 ( ) ( 451 2 ( 314 1 ) ( 339 1 4 ) 337 2 3 ) 363 (4) 46

More information

i ii i iii iv 1 3 3 10 14 17 17 18 22 23 28 29 31 36 37 39 40 43 48 59 70 75 75 77 90 95 102 107 109 110 118 125 128 130 132 134 48 43 43 51 52 61 61 64 62 124 70 58 3 10 17 29 78 82 85 102 95 109 iii

More information

橡実践Oracle Objects for OLE

橡実践Oracle Objects for OLE THE Database FOR Network Computing 2 1. 2 1-1. PL/SQL 2 1-2. 9 1-3. PL/SQL 11 2. 14 3. 16 3-1. NUMBER 16 3-2. CHAR/VARCHAR2 18 3-3. DATE 18 4. 23 4-1. 23 4-2. / 24 26 1. COPYTOCLIPBOARD 26 III. 28 1.

More information

3 Powered by mod_perl, Apache & MySQL use Item; my $item = Item->new( id => 1, name => ' ', price => 1200,

3 Powered by mod_perl, Apache & MySQL use Item; my $item = Item->new( id => 1, name => ' ', price => 1200, WEB DB PRESS Vol.1 79 3 Powered by mod_perl, Apache & MySQL use Item; my $item = Item->new( id => 1, name => ' ', price => 1200, http://www.postgresql.org/http://www.jp.postgresql.org/ 80 WEB DB PRESS

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

i

i 14 i ii iii iv v vi 14 13 86 13 12 28 14 16 14 15 31 (1) 13 12 28 20 (2) (3) 2 (4) (5) 14 14 50 48 3 11 11 22 14 15 10 14 20 21 20 (1) 14 (2) 14 4 (3) (4) (5) 12 12 (6) 14 15 5 6 7 8 9 10 7

More information

java_servlet2_見本

java_servlet2_見本 13 2 JSF Web 1 MVC HTML JSP Velocity Java 14 JSF UI PC GUI JSF Web 2.1 JSF JSF Web FORM FORM 2-1 JSF role, JSF JSF 15 Web JSF JSF Web Macromedia JSF JSF JSF 2.2 / Subscriber package com.mycompany.newsservice.models;

More information

ストラドプロシージャの呼び出し方

ストラドプロシージャの呼び出し方 Release10.5 Oracle DataServer Informix MS SQL NXJ SQL JDBC Java JDBC NXJ : NXJ JDBC / NXJ EXEC SQL [USING CONNECTION ] CALL [.][.] ([])

More information

1 ex01.sql ex01.sql ; user_id from (select user_id ;) user_id * select select (3+4)*7, SIN(PI()/2) ; (1) select < > from < > ; :, * user_id user_name

1 ex01.sql ex01.sql ; user_id from (select user_id ;) user_id * select select (3+4)*7, SIN(PI()/2) ; (1) select < > from < > ; :, * user_id user_name SQL mysql mysql ( mush, potato) % mysql -u mush -p mydb Enter password:****** mysql>show tables; usertable mysql> ( ) SQL (Query) : select < > from < > where < >; : create, drop, insert, delete,... ; (

More information

0 第 4 書データベース操作 i 4.1 データベースへの接続 (1) データベースチェックポイントの追加 データベースチェックポイントを追加します (2)ODBC による接続 ODBC を使用してデータベースへ接続します SQL 文を手作業で指定する場合 最大フェッチ行数を指定する場合はここで最大行数を指定します ii 接続文字列を作成します 作成ボタンクリック > データソース選択 > データベース接続

More information

第1部 一般的コメント

第1部 一般的コメント (( 2000 11 24 2003 12 31 3122 94 2332 508 26 a () () i ii iii iv (i) (ii) (i) (ii) (iii) (iv) (a) (b)(c)(d) a) / (i) (ii) (iii) (iv) 1996 7 1996 12

More information

表1票4.qx4

表1票4.qx4 iii iv v 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 22 23 10 11 24 25 26 27 10 56 28 11 29 30 12 13 14 15 16 17 18 19 2010 2111 22 23 2412 2513 14 31 17 32 18 33 19 34 20 35 21 36 24 37 25 38 2614

More information

第1章 国民年金における無年金

第1章 国民年金における無年金 1 2 3 4 ILO ILO 5 i ii 6 7 8 9 10 ( ) 3 2 ( ) 3 2 2 2 11 20 60 12 1 2 3 4 5 6 7 8 9 10 11 12 13 13 14 15 16 17 14 15 8 16 2003 1 17 18 iii 19 iv 20 21 22 23 24 25 ,,, 26 27 28 29 30 (1) (2) (3) 31 1 20

More information

Gray [6] cross tabulation CUBE, ROLL UP Johnson [7] pivoting SQL 3. SuperSQL SuperSQL SuperSQL SQL [1] [2] SQL SELECT GENERATE <media> <TFE> GENER- AT

Gray [6] cross tabulation CUBE, ROLL UP Johnson [7] pivoting SQL 3. SuperSQL SuperSQL SuperSQL SQL [1] [2] SQL SELECT GENERATE <media> <TFE> GENER- AT DEIM Forum 2017 E3-1 SuperSQL 223 8522 3 14 1 E-mail: {tabata,goto}@db.ics.keio.ac.jp, toyama@ics.keio.ac.jp,,,, SuperSQL SuperSQL, SuperSQL. SuperSQL 1. SuperSQL, Cross table, SQL,. 1 1 2 4. 1 SuperSQL

More information

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

ValueHolder... 9 Customer.java Oracle TopLink 10g(10.1.3) È Volume3 2 lê~åäé= qçéiáåâ= NMÖENMKNKPF Volume3 Creation Date: Mar 04, 2005 Last Update: Aug 23, 2005 Version 1.0 ...3... 3...4... 4... 6 ValueHolder... 9 Customer.java... 10...14 Oracle TopLink 10g(10.1.3) È Volume3

More information

20 15 14.6 15.3 14.9 15.7 16.0 15.7 13.4 14.5 13.7 14.2 10 10 13 16 19 22 1 70,000 60,000 50,000 40,000 30,000 20,000 10,000 0 2,500 59,862 56,384 2,000 42,662 44,211 40,639 37,323 1,500 33,408 34,472

More information

- 2 -

- 2 - - 2 - - 3 - (1) (2) (3) (1) - 4 - ~ - 5 - (2) - 6 - (1) (1) - 7 - - 8 - (i) (ii) (iii) (ii) (iii) (ii) 10 - 9 - (3) - 10 - (3) - 11 - - 12 - (1) - 13 - - 14 - (2) - 15 - - 16 - (3) - 17 - - 18 - (4) -

More information

2 1980 8 4 4 4 4 4 3 4 2 4 4 2 4 6 0 0 6 4 2 4 1 2 2 1 4 4 4 2 3 3 3 4 3 4 4 4 4 2 5 5 2 4 4 4 0 3 3 0 9 10 10 9 1 1

2 1980 8 4 4 4 4 4 3 4 2 4 4 2 4 6 0 0 6 4 2 4 1 2 2 1 4 4 4 2 3 3 3 4 3 4 4 4 4 2 5 5 2 4 4 4 0 3 3 0 9 10 10 9 1 1 1 1979 6 24 3 4 4 4 4 3 4 4 2 3 4 4 6 0 0 6 2 4 4 4 3 0 0 3 3 3 4 3 2 4 3? 4 3 4 3 4 4 4 4 3 3 4 4 4 4 2 1 1 2 15 4 4 15 0 1 2 1980 8 4 4 4 4 4 3 4 2 4 4 2 4 6 0 0 6 4 2 4 1 2 2 1 4 4 4 2 3 3 3 4 3 4 4

More information

I? 3 1 3 1.1?................................. 3 1.2?............................... 3 1.3!................................... 3 2 4 2.1........................................ 4 2.2.......................................

More information

1 (1) (2)

1 (1) (2) 1 2 (1) (2) (3) 3-78 - 1 (1) (2) - 79 - i) ii) iii) (3) (4) (5) (6) - 80 - (7) (8) (9) (10) 2 (1) (2) (3) (4) i) - 81 - ii) (a) (b) 3 (1) (2) - 82 - - 83 - - 84 - - 85 - - 86 - (1) (2) (3) (4) (5) (6)

More information

o 2o 3o 3 1. I o 3. 1o 2o 31. I 3o PDF Adobe Reader 4o 2 1o I 2o 3o 4o 5o 6o 7o 2197/ o 1o 1 1o

o 2o 3o 3 1. I o 3. 1o 2o 31. I 3o PDF Adobe Reader 4o 2 1o I 2o 3o 4o 5o 6o 7o 2197/ o 1o 1 1o 78 2 78... 2 22201011... 4... 9... 7... 29 1 1214 2 7 1 8 2 2 3 1 2 1o 2o 3o 3 1. I 1124 4o 3. 1o 2o 31. I 3o PDF Adobe Reader 4o 2 1o 72 1. I 2o 3o 4o 5o 6o 7o 2197/6 9. 9 8o 1o 1 1o 2o / 3o 4o 5o 6o

More information

SML#³«È¯ºÇÁ°Àþ

SML#³«È¯ºÇÁ°Àþ SML# 2011 in Tokyo, 2011/09/17 1 / 34 SML# 2011 in Tokyo, 2011/09/17 1 / 34 SML# 2011 in Tokyo, 2011/09/17 1 / 34 SML# ML 1993 SML# of Kansai 2003 e-society JAIST 2006 SML# 0.10 2011 9 SML# 0.90 2 / 34

More information

untitled

untitled DSpace 1 1 DSpace HOME...4 1.1 DSpace is Live...4 1.2 Search...4 1.3 Communities in DSpace...6 1.4...6 1.4.1 Browse...7 1.4.2 Sign on to...14 1.4.3 Help...16 1.4.4 About DSpace...16 2 My DSpace...17 2.1

More information

Microsoft Word - Win-Outlook.docx

Microsoft Word - Win-Outlook.docx Microsoft Office Outlook での設定方法 (IMAP および POP 編 ) How to set up with Microsoft Office Outlook (IMAP and POP) 0. 事前に https://office365.iii.kyushu-u.ac.jp/login からサインインし 以下の手順で自分の基本アドレスをメモしておいてください Sign

More information

1,.,,,., RDBM, SQL. OSS,, SQL,,.

1,.,,,., RDBM, SQL. OSS,, SQL,,. 1,.,,,., RDBM, SQL. OSS,, SQL,,. 3 10 10 OSS RDBMS SQL 11 10.1 OSS RDBMS............................ 11 10.1.1 PostgreSQL................................. 11 10.1.2 MySQL...................................

More information

2 Java 35 Java Java HTML/CSS/JavaScript Java Java JSP MySQL Java 9:00 17:30 12:00 13: 項目 日数 時間 習得目標スキル Java 2 15 Web Java Java J

2 Java 35 Java Java HTML/CSS/JavaScript Java Java JSP MySQL Java 9:00 17:30 12:00 13: 項目 日数 時間 習得目標スキル Java 2 15 Web Java Java J 1 2018 4 Java 35 35 262.5 30 1 1 1,045,300 653,300 656,000 2017 12 389,300 2,700 2 946,900 554,900 290,900 101,100 1 2 Java Java Java Web Eclipse Java List Set Map StringBuilder HTML/CSS/JavaScript JSP/Servlet

More information

1 I EViews View Proc Freeze

1 I EViews View Proc Freeze EViews 2017 9 6 1 I EViews 4 1 5 2 10 3 13 4 16 4.1 View.......................................... 17 4.2 Proc.......................................... 22 4.3 Freeze & Name....................................

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

Wiki Wiki Wiki...

Wiki Wiki Wiki... 21 RDB Wiki 0830016 : : 2010 1 29 1 1 5 1.1........................................... 5 1.2 Wiki...................................... 7 1.2.1 Wiki.................... 7 1.2.2 Wiki.................. 8

More information

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

State Committee of Russian Federation on Statistics 1 2 12 State Committee of Russian Federation on Statistics 53

State Committee of Russian Federation on Statistics 1 2 12 State Committee of Russian Federation on Statistics 53 I State Committee of Russian Federation on Statistics 52 State Committee of Russian Federation on Statistics 1 2 12 State Committee of Russian Federation on Statistics 53 State Committee of Russian Federation

More information

Caché SQL に関するよくある質問

Caché SQL に関するよくある質問 Caché SQL に関するよく ある質問 Version 5.1 2006-03-14 InterSystems Corporation 1 Memorial Drive Cambridge MA 02142 www.intersystems.com Caché SQL に関するよくある質問 Caché Version 5.1 2006-03-14 Copyright 2006 InterSystems

More information

,, create table drop table alter table

,, create table drop table alter table PostgreSQL 1 1 2 1 3,, 2 3.1 - create table........................... 2 3.2 - drop table............................ 3 3.3 - alter table............................ 4 4 - copy 5 4.1..................................

More information

「産業上利用することができる発明」の審査の運用指針(案)

「産業上利用することができる発明」の審査の運用指針(案) 1 1.... 2 1.1... 2 2.... 4 2.1... 4 3.... 6 4.... 6 1 1 29 1 29 1 1 1. 2 1 1.1 (1) (2) (3) 1 (4) 2 4 1 2 2 3 4 31 12 5 7 2.2 (5) ( a ) ( b ) 1 3 2 ( c ) (6) 2. 2.1 2.1 (1) 4 ( i ) ( ii ) ( iii ) ( iv)

More information

Lotus Domino XML活用の基礎!

Lotus Domino XML活用の基礎! IBM Software Group Lotus Domino XML 2 Agenda Domino XML Domino XML Lotus Domino Web XML Lotus Domino Web XML XML 3 Domino XML Language (DXL) XML Lotus Domino Lotus Notes/Domino R5 Lotus Notes/Domino 6.x

More information

1 1 1.......................... 1 2.......................... 2 2 5 1........................... 5 2................... 7 3..................... 8 4..

1 1 1.......................... 1 2.......................... 2 2 5 1........................... 5 2................... 7 3..................... 8 4.. CD 1 1 1.......................... 1 2.......................... 2 2 5 1........................... 5 2................... 7 3..................... 8 4......................... 13 5 CD.................

More information

i ii iii iv v vi vii ( ー ー ) ( ) ( ) ( ) ( ) ー ( ) ( ) ー ー ( ) ( ) ( ) ( ) ( ) 13 202 24122783 3622316 (1) (2) (3) (4) 2483 (1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (11) 11 11 2483 13

More information

hands_on_4.PDF

hands_on_4.PDF PHPMySQL 4 PC LAN 2 () () SQLDBMS DBMS DataBase Management System mysql DBMS SQL Structured Query Language SQL DBMS 3 DBMS DataBase Management System B Table 3 Table 2 Table 1 a 1 a 2 a 3 A SQLStructured

More information

n n n ( ) n Oracle 16 PostgreSQL 3 MySQL

n n n ( ) n Oracle 16 PostgreSQL 3 MySQL SaaS CAM MACS PostgreSQL ~ ~ 7 PostgreSQL in 2014/02/07 n n n ( ) n Oracle 16 PostgreSQL 3 MySQL n SaaS CAM MACS n AWS n 1993 6 1 1999 4 1 C/S CAM MACS 2007 4 1 SaaS CAM MACS 2007 11 1 SaaS CAM MACS CAM

More information

K227 Java 2

K227 Java 2 1 K227 Java 2 3 4 5 6 Java 7 class Sample1 { public static void main (String args[]) { System.out.println( Java! ); } } 8 > javac Sample1.java 9 10 > java Sample1 Java 11 12 13 http://java.sun.com/j2se/1.5.0/ja/download.html

More information

Oracle Locator Oracle Database 10g Standard Edition Standard Edition One Oracle Database 10g Release 1 Oracle Locator : Enterprise Edition Oracle Loca

Oracle Locator Oracle Database 10g Standard Edition Standard Edition One Oracle Database 10g Release 1 Oracle Locator : Enterprise Edition Oracle Loca ORACLE SPATIAL OPTION ORACLE LOCATOR Oracle Database 10g Oracle Database 10g Release 2 Oracle Locator : Oracle Spatial Oracle Locator Oracle Locator Oracle Database 10g Standard Edition EPSG Standard Edition

More information

5.3 1. 2. 3. tert-tert 4. Enter 5. Delete 6. 7. Delete 8. Delete 9. [] [] 10. 11. 12. ID 40

5.3 1. 2. 3. tert-tert 4. Enter 5. Delete 6. 7. Delete 8. Delete 9. [] [] 10. 11. 12. ID 40 5 PowerPoint PowerPoint 2003 PowerPoint 2007 5.1 - tert- 1. 2. 3. 4. 5.2 PowerPoint 2007 PowerPoint 2007 Word 2007, Excel 2007 39 5.3 1. 2. 3. tert-tert 4. Enter 5. Delete 6. 7. Delete 8. Delete 9. []

More information

ACS電子ジャーナル利用マニュアル

ACS電子ジャーナル利用マニュアル American Chemical Society ACS Web Edition & Journal Archives American Chemical Society ACS 4 Web Edition 2002 7 1879 Journal Archives ACS 1...2 2 2-1...3 2-2...4 2-3...5 3 3-1 Abstract...6 3-2 Full Text

More information

PowerPoint Presentation

PowerPoint Presentation プログラミング Java III 第 4 回 : サーブレットの HTTP Request の処理 Ivan Tanev 講義の構造 1. サーブレットの HTTP Request の処理 2. 演習 2 第 3 回のまとめ Internet Explorer のアドレス バー : http://isd-si.doshisha.ac.jp/teaching/programming_3/xxxxxxxx/lecture3_form1.html

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

"CAS を利用した Single Sign On 環境の構築"

CAS を利用した Single Sign On 環境の構築 CAS Single Sign On (Hisashi NAITO) naito@math.nagoya-u.ac.jp Graduate School of Mathematics, Nagoya University naito@math.nagoya-u.ac.jp, Oct. 19, 2005 Tohoku Univ. p. 1/40 Plan of Talk CAS CAS 2 CAS Single

More information

1. IEEE Xplore 1.1. IEEE Xplore Institute of electrical and Electronics Engineers (IEEE) Institution of Electrical Engineers (IEE) 12, IEEE Xpl

1. IEEE Xplore 1.1. IEEE Xplore Institute of electrical and Electronics Engineers (IEEE) Institution of Electrical Engineers (IEE) 12, IEEE Xpl IEL Online IEEE Xplore2.0 - IEEE/IEE Electronic Library Online - 1. IEEE XPLORE... 2 1. IEEE XPLORE... 2 1.1.... 2 1.2. IEEE XPLORE... 2 1.3. IEEE XPLORE... 3 1.4. IEEE XPLORE... 3 2.... 4 2.1.... 5 2.2....

More information

Microsoft Word - ネオコピー修正(1月11日2013年).doc

Microsoft Word - ネオコピー修正(1月11日2013年).doc DVD DVD 1 40 1 15000 15000 1 1 50100 35 40 1 40 1 1 1 ( 1000 5 2007200825 5 5 1 1500 5 15 5 5 "" 2 4000 15000 15000 "" 15000 ~35~ 100 35 ~1~ 20072008 5 15000 100 35 5 15000 100 PTA 35 35 ~2~ 50 ~~

More information

1 VisBAR edu H 2 O.....

1 VisBAR edu H 2 O..... VisBAR edu v1.03 ( ) 25 4 22 1 VisBAR edu 1 1.1....................................................... 1 1.2.................................................. 2 2 3 2.1 H 2 O.........................................

More information

CodeIgniter Con 2011, Tokyo Japan, February

CodeIgniter Con 2011, Tokyo Japan, February CodeIgniter Con 2011, Tokyo Japan, February 19 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 http://www.iviking.org/fx.php/ 25 26 10 27 28 29 30 31

More information

by CASIO W61CA For Those Requiring an English/Chinese Instruction

by CASIO W61CA     For Those Requiring an English/Chinese Instruction by CASIO W61CA http://www.au.kddi.com/torisetsu/index.html http://www.au.kddi.com/manual/index.html For Those Requiring an English/Chinese Instruction Manual English/Chinese Simple Manual can be read on

More information

178 5 I 1 ( ) ( ) 10 3 13 3 1 8891 8 3023 6317 ( 10 1914 7152 ) 16 5 1 ( ) 6 13 3 13 3 8575 3896 8 1715 779 6 (1) 2 7 4 ( 2 ) 13 11 26 12 21 14 11 21

178 5 I 1 ( ) ( ) 10 3 13 3 1 8891 8 3023 6317 ( 10 1914 7152 ) 16 5 1 ( ) 6 13 3 13 3 8575 3896 8 1715 779 6 (1) 2 7 4 ( 2 ) 13 11 26 12 21 14 11 21 I 178 II 180 III ( ) 181 IV 183 V 185 VI 186 178 5 I 1 ( ) ( ) 10 3 13 3 1 8891 8 3023 6317 ( 10 1914 7152 ) 16 5 1 ( ) 6 13 3 13 3 8575 3896 8 1715 779 6 (1) 2 7 4 ( 2 ) 13 11 26 12 21 14 11 21 4 10 (

More information

haskell.gby

haskell.gby Haskell 1 2 3 Haskell ( ) 4 Haskell Lisper 5 Haskell = Haskell 6 Haskell Haskell... 7 qsort [8,2,5,1] [1,2,5,8] "Hello, " ++ "world!" "Hello, world!" 1 + 2 div 8 2 (+) 1 2 8 div 2 3 4 map even [1,2,3,4]

More information

rzamhpdf.ps

rzamhpdf.ps IBM i 7.2 IBM i 7.2 43 IBM i 7.2 ( 5770-SS1) RISC CISC IBM IBM i Version 7.2 Security Service Tools 1 2014.4 Copyright IBM Corporation 2003, 2013. .............. 1 IBM i 7.2............ 1 PDF.........

More information

122.pdf

122.pdf HironobuUtsugi hironobu-utsugi@exa-corp.co.jp RDB exa review XML HTML W3C(World Wide Web Consortium) XML(Extensible Markup Language) HTML RDB(Relational Database) XML XML DB RDB XML DB XML DB XML * 1 RDB

More information

IBM Software Group DB2 Information Management Software DB2 V8 XML SQL/XML 2 XML XML UDF XMLExtender XML XML XMLCollection, XMLColumn XML UDF Informati

IBM Software Group DB2 Information Management Software DB2 V8 XML SQL/XML 2 XML XML UDF XMLExtender XML XML XMLCollection, XMLColumn XML UDF Informati IBM Software Group XML Features in DB2 UDB V8 IBM Software Group DB2 Information Management Software DB2 V8 XML SQL/XML 2 XML XML UDF XMLExtender XML XML XMLCollection, XMLColumn XML UDF Information Integrator

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

1 1 1......................... 1 2.......................... 2 3.................... 2 4...................... 3 2 4 1....... 4 2........................ 7 3................... 8 3 12 1...........................

More information

Advantage CA-Easytrieve Plus

Advantage CA-Easytrieve Plus CA-EasytrievePlus CA-Easytrieve PlusP 3-7 P 8-30 CA-Easytrieve Plus CA-Easytrieve Plus CA-Easytrieve Plus CA-Easytrieve Plus COBOL,PL/I CA-Easytrieve Plus CA-Easytrieve Plus a. () a. b. (COBOL PL/I) ()

More information

FileMaker Server Getting Started Guide

FileMaker Server Getting Started Guide FileMaker Server 11 2004-2010 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker FileMaker, Inc. FileMaker, Inc. FileMaker FileMaker,

More information

,,,, : - i -

,,,, : - i - 2017 Future University Hakodate 2017 System Information Science Practice Group Report Project Name Manga engineering Group Name Literacy Manga /Project No. 19 /Project Leader 1015131 Kiyomasa Murakami

More information

MOMW_I_,II 利用ガイド.PDF

MOMW_I_,II 利用ガイド.PDF MOMW (I), II 1 The Making of the Modern World I. The Making of the Modern World... 2 II.... 3 II-1... 3 II-2 Basic Search... 4 II-3... 5 II-4 Advanced Search... 9 II-5... 13 III.... 14 III-1... 14 III-2...

More information

28 Docker Design and Implementation of Program Evaluation System Using Docker Virtualized Environment

28 Docker Design and Implementation of Program Evaluation System Using Docker Virtualized Environment 28 Docker Design and Implementation of Program Evaluation System Using Docker Virtualized Environment 1170288 2017 2 28 Docker,.,,.,,.,,.,. Docker.,..,., Web, Web.,.,.,, CPU,,. i ., OS..,, OS, VirtualBox,.,

More information

Ver.1 1/17/2003 2

Ver.1 1/17/2003 2 Ver.1 1/17/2003 1 Ver.1 1/17/2003 2 Ver.1 1/17/2003 3 Ver.1 1/17/2003 4 Ver.1 1/17/2003 5 Ver.1 1/17/2003 6 Ver.1 1/17/2003 MALTAB M GUI figure >> guide GUI GUI OK 7 Ver.1 1/17/2003 8 Ver.1 1/17/2003 Callback

More information

s

s s073083 23 3 17 1 2 1.1.............................. 2 1.2.............................. 2 1.3.............................. 3 2 4 2.1........................... 4 2.2 Google App Engine........................

More information

: Name, Tel name tel (! ) name : Name! Tel tel ( % ) 3. HTML. : Name % Tel name tel 2. 2,., [ ]!, [ ]!, [ ]!,. [! [, ]! ]!,,. ( [ ], ),. : [Name], nam

: Name, Tel name tel (! ) name : Name! Tel tel ( % ) 3. HTML. : Name % Tel name tel 2. 2,., [ ]!, [ ]!, [ ]!,. [! [, ]! ]!,,. ( [ ], ),. : [Name], nam DEIM Forum 2010 F6-1 SuperSQL Ajax 223 8522 3 14 1 E-mail: kabu@db.ics.keio.ac.jp, toyama@ics.keio.ac.jp SuperSQL Ajax, GUI, GUI,, Ajax SuperSQL, HTML, Ajax, RIA Abstract Layout Function Extends for Generating

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

Web Web Web Web i

Web Web Web Web i 28 Research of password manager using pattern lock and user certificate 1170369 2017 2 28 Web Web Web Web i Abstract Research of password manager using pattern lock and user certificate Takuya Mimoto In

More information

untitled

untitled Oracle Direct Seminar SQL Agenda SQL SQL SQL SQL 11g SQL FAQ Oracle Direct SQL Server MySQL PostgreSQL Access Application Server Oracle Database Oracle Developer/2000 Web Oracle Database

More information

Ruby Ruby ruby Ruby G: Ruby>ruby Ks sample1.rb G: Ruby> irb (interactive Ruby) G: Ruby>irb -Ks irb(main):001:0> print( ) 44=>

Ruby Ruby ruby Ruby G: Ruby>ruby Ks sample1.rb G: Ruby> irb (interactive Ruby) G: Ruby>irb -Ks irb(main):001:0> print( ) 44=> Ruby Ruby 200779 ruby Ruby G: Ruby>ruby Ks sample1.rb G: Ruby> irb (interactive Ruby) G: Ruby>irb -Ks irb(main):001:0> print( 2+3+4+5+6+7+8+9 ) 44 irb(main):002:0> irb irb(main):001:0> 1+2+3+4 => 10 irb(main):002:0>

More information

9iAS_DEV.PDF

9iAS_DEV.PDF Oracle9i Application Server for Windows NT 1.0.2.0.0 2001.2.1 1 1 PL/SQL...3 1.1...3 1.2 PL/SQL Web Toolkit...5 1.3 Database Access Descriptor...6 1.4 PL/SQL...8 1.5 PL/SQL...10 1.6 PL/SQL...12 2 SERVLET...13

More information

22 (266) / Web PF-Web Web Web Web / Web Web PF-Web Web Web Web CGI Web Web 1 Web PF-Web Web Perl C CGI A Pipe/Filter Architecture Based Software Gener

22 (266) / Web PF-Web Web Web Web / Web Web PF-Web Web Web Web CGI Web Web 1 Web PF-Web Web Perl C CGI A Pipe/Filter Architecture Based Software Gener 22 (266) / Web PF-Web Web Web Web / Web Web PF-Web Web Web Web CGI Web Web 1 Web PF-Web Web Perl C CGI A Pipe/Filter Architecture Based Software Generator PF-Web for Constructing Web Applications. Tomohiro

More information

Copyright c 2008 Zhenjiang Hu, All Right Reserved.

Copyright c 2008 Zhenjiang Hu, All Right Reserved. 2008 10 27 Copyright c 2008 Zhenjiang Hu, All Right Reserved. (Bool) True False data Bool = False True Remark: not :: Bool Bool not False = True not True = False (Pattern matching) (Rewriting rules) not

More information

5 ISMS 5 4 PC PC USB PDA 2

5 ISMS 5 4 PC PC USB PDA 2 3 3 1 2 1 1 2 4 1 2 1 1 1 5 ISMS 5 4 PC PC USB PDA 2 16 1 16 1 4 3 PC USB 4 5 1 6 6 506 507 507 6 5000 JIS 7 3 3 8 1 4 Web 2 15 16 9 1 OK 2 10 20 3 10 4 19 100 1 0 100 1000 1 11 3 10 50 A B C 3 4 10 50

More information

橡挿入法の実践

橡挿入法の実践 PAGE:1 7JFC1121 PAGE:2 7JFC1121 PAGE:3 7JFC1121 Kadai_1.pas program input_file;{7jfc1121 19 20 { type item = record id : integer; math : integer; english : integer; var wfile data flag id_no filename :

More information

Oracle9i

Oracle9i Oracle9i 2002 2 Oracle9i... 4... 4... 4 Oracle... 4 SQL... 6... 6... 6... 7... 7... 9... 9... 9 CUBE... 10... 11... 11... 11 OR... 12... 12... 14... 14... 15... 15... 16... 16... 18... 18... 18... 19...

More information

FileMaker Server 9 Getting Started Guide

FileMaker Server 9 Getting Started Guide FileMaker Server 9 2007 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker FileMaker, Inc. ScriptMaker FileMaker, Inc. FileMaker FileMaker,

More information

FileMaker Server 9 Getting Started Guide

FileMaker Server 9 Getting Started Guide FileMaker Server 10 2007-2009 FileMaker, Inc. All rights reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker Bento Bento FileMaker, Inc. Mac Mac Apple Inc. FileMaker

More information

untitled

untitled 2009. 10 106-0044 2 17 12 TEL : 0120-551-051 FAX : 03-3505-6283 E-mail : endnote@usaco.co.jp http://www.usaco.co.jp/endnote/ EndNote X3 Windows / 2009. 7 1... 1 2... 2 1.... 2 2.... 5 3 EndNote... 6 1.

More information

IT IBM Corporation

IT IBM Corporation 2009/9/25 ATC. 1 2009 IBM Corporation 1. 1. 2. 3. IT 2 2009 IBM Corporation 2006 8 9 (?) Google CEO, Eric Schmidt @ Search Engine Strategies Conference (*) emergent () 10 Network ComputerAjax LAMP (Linux

More information

Microsoft Word - sample_adv-programming.docx

Microsoft Word - sample_adv-programming.docx サンプル問題 以下のサンプル問題は包括的ではなく 必ずしも試験を構成するすべての種類の問題を表すとは限りません 問題は 個人が認定試験を受ける準備ができているかどうかを評価するためのものではありません SAS Advanced Programming for SAS 9 問題 1 次の SAS データセット ONE と TWO があります proc sql; select one.*, sales

More information

ADSLモデム設定マニュアル

ADSLモデム設定マニュアル ADSL () [] 1. -- ----------------------------------------------------------------------------------------------------2 2. LAN (Windows95, 98 SE,Me)-------------------------------------------------------

More information