XQueryってどんなもの?

Size: px
Start display at page:

Download "XQueryってどんなもの?"

Transcription

1 2 XML Week XML XML XML-DB WG NTT ( ) ymmt@po.ntts.co.jp chiba@isid.co.jp obamikio@jp.ibm.com

2 XQuery SQL SQL SQL

3 XQuery SQL XML

4 XQuery XML XML XPath XML XPath XML XPath XPath XML XML

5 XQuery XML XML XPath XPath <students> <student name=" "> <teacher> </teacher> </student> <student name=" "> <teacher> </teacher> </student> <students> "] <student name=" "> <teacher> </teacher> </student>

6 XQuery XML XML XPath <students> <teacher name=" "> <student name=" "> <student> </student> <teacher> </teacher> <student> </student> </student> </teacher> <student name=" "> <teacher> </teacher> </student> <students> XML

7 XQuery XML XML XPath XSLT XSLT XPath XML XSLT

8 XQuery XML XML XPath XSLT XPath XSLT XML!! XQuery XQuery!!

9 XML XML XML XML

10 XML XML XML XML SQL XML SQL

11 XML XML XML XML XML SQL XQuery

12 XML XML XML (Join)

13 XML XML XML XML XML

14 XML XML XQuery unordered ( ) unordered unordered( for $p in doc("parts.xml")//part[color = "Red"], $s in doc("suppliers.xml")//supplier where $p/suppno = $s/suppno return <ps> { $p/partno, $s/suppno } </ps> ) XQuery

15 XML Query XQL99 XQL98 XPath XSLT XUL excelon XML-QL XSQL Oracle XML XML OODBQuery OODBQuery XPointer RDBQuery RDBQuery SQL OQL QUILT XQuery XQL XSLT XPath XML XML-QL SQL XQL XML-QL QUILT XQuery QUILT W3C XML

16 XQuery W3C Working Draft ( XML Query Requirements (5/2/2003) XML Query Use Cases (5/2/2003) :11/15/ XQuery1.0 and XPath2.0 Data Model (LAST CALL) (5/2/2003) XSLT 2.0 and XQuery 1.0 Serialization (5/2/2003) XQuery1.0 and XPath2.0 Formal Semantics (5/2/2003) XQuery1.0: An XML Query Language (5/2/2003) XML Syntax for XQuery1.0 (XQueryX) (6/7/2001) XQuery1.0 and XPath2.0 Functions and Operators (LAST CALL)(5/2/2003) XPath Requirements Version2.0 (2/14/2001) XML Path Language (XPath)2.0 (5/2/2003) :8/16/2002 Document WG XML Query and XPath Full-Text Requirements (5/2/2003) XML Query and XPath Full-Text Use Cases (2/14/2003) Document WG

17 XQuery Expression XQuery 2003/05/03 Working Draft FLWOR Path

18 Path $ QName $b $val FLWOR typeswitch Path XML Path Language (XPath)2.0 /doc/chapter[title="introduction"]

19 XQuery XQuery1.0 and XPath2.0 Functions and Operators op:numeric-add fn:round fn:concat fn:contains fn:replace fn:local-name fn:deep-equal fn:empty fn:insert-before fn:sum fn:doc

20 XML Direct Element Constructor XML curly braces { } Computed Constructor element attribute document text <title isbn= isbn > { $b/title } </title> element title { "Harold and the Purple Crayon" } { attribute isbn { "isbn " } }

21 FLWOR 1 F L W O R FOR LET WHERE ORDER BY RETURN flower əʊə XML JOIN XML FLWOR FLWOR

22 FLWOR 2 FOR for in (, in )* Cartesian tuple stream iteration LET let := (, in )* tuple stream FOR FOR FOR

23 FLWOR 3 WHERE where FOR LET tuple stream true false ORDER BY order by tuple stream collation empty

24 FLWOR 4 RETURN return FLWOR tuple stream

25 XML Query Use Cases 9 ( XMP ) ( TREE ) ( SEQ ) ( R ) ("SGML") Standard Generalized Markup Language ( STRING ) ( NS ) ( PARTS ) ("STRONG")

26 XML Query Use Cases Use Case Addison-Wesley (Use Case XMP Q1) Use Case 2 Bicycle itemno description bid Use Cases R Q2

27 Use Case Addison-Wesley (Use Case XMP Q1)

28 XML bib.xml <bib> <book year="1994"> <title>tcp/ip Illustrated</title> <author> <>Stevens</> <>W.</> </author> <publisher>addison-wesley</publisher> <price> 65.95</price> </book> XML Query Use Cases <book year="2000"> <title>data on the Web</title> <author> <>Abiteboul</> <>Serge</> </author> <author> <>Buneman</> <>Peter</> </author> <author> <>Suciu</> <>Dan</> </author> <publisher>morgan Kaufmann Publishers</publisher> <price>39.95</price> </book> </bib>

29 bib.xml bib book book year title author publisher price year title author author author publisher price 1994 TCP/IP Illustrated Addison -Wesley Data on the Web Morgan Kaufmann Publishers Stevens W. Abiteboul Serge Buneman Peter Suciu Dan

30 XQuery Addison-Wesley (Use Case XMP Q1) XQuery

31 XQuery 1 1 bib book year 1994 title TCP/IP Illustrated author Stevens W. publisher price Addison -Wesley book year 2000 title Data on the Web author Abiteboul Peter publisher price Morgan Kaufmann Publishers author Suciu Serge author Buneman Dan

32 XQuery 1 2 bib $b = book book year title author publisher price year title author author author publisher price 1994 TCP/IP Illustrated Addison -Wesley Data on the Web Morgan Kaufmann Publishers Stevens W. Abiteboul Serge Buneman Peter Suciu Dan

33 XQuery 1 3 WHERE bib $b = book book year title author publisher price year title author author author publisher price 1994 TCP/IP Illustrated Addison -Wesley Data on the Web Morgan Kaufmann Publishers Stevens W. Abiteboul Serge Buneman Peter Suciu Dan

34 XQuery 1 4 return <book year= 1994 > <title>tcp/ip Illustrated</title> </book> bib $b = book book year title author publisher price year title author author author publisher price 1994 TCP/IP Illustrated Addison -Wesley Data on the Web Morgan Kaufmann Publishers Stevens W. Abiteboul Serge Buneman Peter Suciu Dan

35 XQuery 1 5 bib book $b = book year title author publisher price year title author author author publisher price 1994 TCP/IP Illustrated Addison -Wesley Data on the Web Morgan Kaufmann Publishers Stevens W. Abiteboul Serge Buneman Peter Suciu Dan

36 XQuery 1 6 bib WHERE book $b = book year title author publisher price year title author author author publisher price 1994 TCP/IP Illustrated Addison -Wesley Data on the Web Morgan Kaufmann Publishers Stevens W. Abiteboul Serge Buneman Peter Suciu Dan

37 XQuery 1 7 XQuery <bib> <book year= 1994 > <title>tcp/ip Illustrated</title> </book> </bib> bib book book year title author publisher price year title author author author publisher price 1994 TCP/IP Illustrated Addison -Wesley Data on the Web Morgan Kaufmann Publishers Stevens W. Abiteboul Serge Buneman Peter Suciu Dan

38 Use Case 2 Bicycle itemno description bid Use Cases R Q2

39 ITEMS BIDS U01 Broken Bicycle U04 Racing Bicycle U03 Helicopter U03 Tennis Racket U01 Tricycle U02 Old Bicycle U02 Motorcycle U01 Red Bicycle 1001 RESERVE _PRICE END_DATE START_DATE OFFERED _BY DESCRIPTION ITEMNO U U U U U U U U U U U U U U U U02 BID_DATE BID ITEMNO USERID

40 XML items.xml items.xml

41 XML bids.xml bids.xml

42 XQuery 2 Bicycle itemno description bid Use Cases R Q2 XQuery

43 XQuery 2 1 <result> { for $i in doc("items.xml")//item_tuple let $b := doc("bids.xml")//bid_tuple[itemno = $i/itemno] where contains($i/description, "Bicycle") order by $i/itemno return <item_tuple> { $i/itemno } { $i/description } <high_bid>{ max($b/bid) }</high_bid> </item_tuple> }</result> items bids $i = item_tuple bid_tuple $b = itemno description offered_by start_date end_date reserve_price userid itemno bid bid_date XML JOIN

44 XQuery 2 2 <result> { for $i in doc("items.xml")//item_tuple let $b := doc("bids.xml")//bid_tuple[itemno = $i/itemno] where contains($i/description, "Bicycle") order by $i/itemno return <item_tuple> { $i/itemno } { $i/description } <high_bid>{ max($b/bid) }</high_bid> </item_tuple> }</result> JOIN $i = $b = ITEMNO 1001 DESCRIPTION Red Bicycle OFFERED _BY U01 START_DATE END_DATE RESERVE _PRICE 40 USERID U02 U04 ITEMNO BID BID_DATE U U U

45 XQuery 2 3 <result> { for $i in doc("items.xml")//item_tuple let $b := doc("bids.xml")//bid_tuple[itemno = $i/itemno] where contains($i/description, "Bicycle") order by $i/itemno return <item_tuple> { $i/itemno } { $i/description } <high_bid>{ max($b/bid) }</high_bid> </item_tuple> }</result> $i = $b = ITEMNO 1001 DESCRIPTION Red Bicycle OFFERED _BY U01 START_DATE END_DATE RESERVE _PRICE 40 USERID U02 U04 ITEMNO BID BID_DATE U U U

46 XQuery 2 4 <result> { for $i in doc("items.xml")//item_tuple let $b := doc("bids.xml")//bid_tuple[itemno = $i/itemno] where contains($i/description, "Bicycle") order by $i/itemno return <item_tuple> { $i/itemno } { $i/description } <high_bid>{ max($b/bid) }</high_bid> </item_tuple> }</result> $i = $b = ITEMNO DESCRIPTION OFFERED _BY START_DATE END_DATE RESERVE _PRICE USERID U02 ITEMNO 1001 BID 35 BID_DATE Red Bicycle U U U item_tuple U04 U itemno description high_bid max( )

47 XQuery 2 5 <result> { for $i in doc("items.xml")//item_tuple let $b := doc("bids.xml")//bid_tuple[itemno = $i/itemno] where contains($i/description, "Bicycle") order by $i/itemno return <item_tuple> { $i/itemno } { $i/description } <high_bid>{ max($b/bid) }</high_bid> </item_tuple> }</result> result item_tuple item_tuple item_tuple item_tuple itemno description high_bid itemno description high_bid itemno description high_bid itemno description high_bid 1001 Red Bicycle Old Bicycle Racing Bicycle Broken Bicycle order by

48 XQuery 2 6 <result> <item_tuple> <itemno>1001</itemno> <description>red Bicycle</description> <high_bid>55.0</high_bid> </item_tuple> <item_tuple> <itemno>1003</itemno> <description>old Bicycle</description> <high_bid>20.0</high_bid> </item_tuple> <item_tuple> <itemno>1007</itemno> <description>racing Bicycle</description> <high_bid>225.0</high_bid> </item_tuple> <item_tuple> <itemno>1008</itemno> <description>broken Bicycle</description> <high_bid></high_bid> </item_tuple> </result>

49 SVG XQuery SVG Scalable Vector Graphics W3C XML rect circle text SVG XQuery

50 SVG SVG <?xml version= 1.0 encoding= UTF-8?> <svg xmlns:svg=' width='100mm' height='100mm' viewbox=' '> <circle cx='20' cy='20' r='15' fill="#ff0000" stroke="#000000" stroke-width="0.3"/> </svg> SVG 20 x RGB #FF y

51 SVG XML-DB (NeoCore) XQueryViewer XML-DB (Xquery Apache XML Project Batik 1.5 (SVG Library) Java Foundation Class (Swing) Java SDK 1.4

52 SVG SVG Xquery

53 [ ] SVG 1 SVG circle1.svg

54 [ ] SVG 2 SVG circle1.svg <?xml version="1.0" encoding="utf-8" standalone="no"?> <svg xmlns=' width='100mm' height='100mm' viewbox=' '> <g> <circle cx='15' cy='15' r='5' fill="#ff0000" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='15' cy='65' r='5' fill="#ff0000" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='65' cy='65' r='5' fill="#ff0000" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='65' cy='15' r='5' fill="#ff0000" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='20' cy='20' r='10' fill="#ff0033" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='20' cy='60' r='10' fill="#ff0033" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='60' cy='60' r='10' fill="#ff0033" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='60' cy='20' r='10' fill="#ff0033" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='25' cy='25' r='15' fill="#ff0066" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='25' cy='55' r='15' fill="#ff0066" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='55' cy='55' r='15' fill="#ff0066" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='55' cy='25' r='15' fill="#ff0066" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='30' cy='30' r='20' fill="#ff0099" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='30' cy='50' r='20' fill="#ff0099" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='50' cy='50' r='20' fill="#ff0099" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='50' cy='30' r='20' fill="#ff0099" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='35' cy='35' r='25' fill="#ff00cc" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='35' cy='45' r='25' fill="#ff00cc" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='45' cy='45' r='25' fill="#ff00cc" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='45' cy='35' r='25' fill="#ff00cc" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='40' cy='40' r='30' fill="#ff00ff" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> </g> </svg>

55 [ ] SVG 3 20 <svg xmlns=' width='100mm' height='100mm' viewbox=' '> { for $c in document("circle1.svg")/svg//circle where $c/@r < 20 return <g> { $c } </g> }</svg> 20 <svg xmlns=' width='100mm' height='100mm' viewbox=' '> { for $c in document("circle1.svg")/svg//circle where $c/@r > 20 return <g> { $c } </g> }</svg>

56 [ ] SVG

57 [ ] SVG 5 SVG rect1.svg

58 [ ] SVG 6 SVG circle1.svg <?xml version="1.0" encoding="utf-8" standalone="no"?> <svg xmlns=' width='40mm' height='40mm' viewbox=' '> <g> <rect x='0' y='0' width='10' height='10' fill="#66ccff" stroke="none"/> <rect x='10' y='0' width='10' height='10' fill="#ff9933" stroke="none"/> <rect x='20' y='0' width='10' height='10' fill="#66ccff" stroke="none"/> <rect x='30' y='0' width='10' height='10' fill="#ff9933" stroke="none"/> <rect x='0' y='10' width='10' height='10' fill="#ff9933" stroke="none"/> <rect x='10' y='10' width='10' height='10' fill="#66ccff" stroke="none"/> <rect x='20' y='10' width='10' height='10' fill="#ff9933" stroke="none"/> <rect x='30' y='10' width='10' height='10' fill="#66ccff" stroke="none"/> <rect x='0' y='20' width='10' height='10' fill="#66ccff" stroke="none"/> <rect x='10' y='20' width='10' height='10' fill="#ff9933" stroke="none"/> <rect x='20' y='20' width='10' height='10' fill="#66ccff" stroke="none"/> <rect x='30' y='20' width='10' height='10' fill="#ff9933" stroke="none"/> <rect x='0' y='30' width='10' height='10' fill="#ff9933" stroke="none"/> <rect x='10' y='30' width='10' height='10' fill="#66ccff" stroke="none"/> <rect x='20' y='30' width='10' height='10' fill="#ff9933" stroke="none"/> <rect x='30' y='30' width='10' height='10' fill="#66ccff" stroke="none"/> </g> </svg>

59 [ ] SVG 7 x 2 <svg xmlns=' width='80mm' height='40mm' viewbox=' '> { for $r in document("rect1.svg")/svg//rect return <g> <rect x={$r/@x*2} y={$r/@y} width={$r/@width*2} height={$r/@height} fill={$r/@fill} stroke="none"/> </g> }</svg>

60 [ ] SVG 8

61 Demonstration XML DB NeoCore SVG

UbiquitousMetadata活用-3

UbiquitousMetadata活用-3 XML XML XML-DB WG NTT () ymmt@po.ntts.co.jp chiba@isid.co.jp obamikio@jp.ibm.com 2XML Week 3/4 XQuery SQL SQL SQL XQuery SQL XML XQuery XML XML XPath XML XPath XML XPath XPath XML XML XQuery XML XML XPath

More information

XML XML (Extensible Markup Language) ISO SGML (Standard Generalized Markup Language) W3C (World Wide Web Consortium) XML 1.0

XML XML (Extensible Markup Language) ISO SGML (Standard Generalized Markup Language) W3C (World Wide Web Consortium) XML 1.0 XML 2-1 XML XML (Extensible Markup Language) ISO SGML (Standard Generalized Markup Language) W3C (World Wide Web Consortium) XML 1.0 http://www.w3.org/tr/rec-xml http://www.fxis.co.jp/xmlcafe/tmp/rec-xml.html

More information

XMLテクノロジを使いやすくする

XMLテクノロジを使いやすくする XML 2005 9 XML... 3... 3 XML... 5 DOM XML... 5 DOM 3.0 Load and Save... 5 DOM 3.0 Validation... 8 SAX XML... 11 SAX... 11 XSL... 12... 13... 13... 14... 14 XML... 15 XML... 15 JAXB CLASS GENERATOR... 16

More information

G-XML

G-XML G-XML PreSerV for WebG-XML G-XML i 1... 3 1.1 G-XML... 3 1.2... 3 1.3... 4 1.4... 5 2 G-XML... 6 2.1... 6 2.2... 8 2.2.1... 9 2.2.2...13 2.2.3...14 2.2.4...16 2.2.5...16 2.3...17 2.3.2...17 2.3.3...17

More information

Level1_ key

Level1_ key HTML5 1 2019 8 1.5 API ( ) 1.5.1 API 1.5.2 API 1.5.3 API 1.5.4 API!2 HTML5 Web HTML5 Web Web HTML5 Web Web Web Web Web HTML5!3 Web HTML5 Web HTML Web Web Web API Web HTML Web Web!4 1 2 HTML/HTML5 HTML5

More information

untitled

untitled SVGMAP Coordinate Reference System SVG1.1 7 12 (Geographic Coordinate Systems) 1 SVG x=262 y=259 =139.6953494 =35.6906626 SVG x=333 y=283 =139.6965939 =35.6902857 SVG Map RDF/XML 2

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

OOW_I06

OOW_I06 G XDK XML Agenda XDK Overview XML Parser XML Schema Processor (XML SQL Utility XML Class Generator XML Transviewer Beans XSQL Servlet Oracle XML Developer s Kit Oracle XML Devleloper s Kit (XDK XML DB

More information

TitleWeb における画像とテキストの融合 Author(s) 安岡, 孝一 Citation (2003): 1-12 Issue Date URL Right Type Conference Paper

TitleWeb における画像とテキストの融合 Author(s) 安岡, 孝一 Citation (2003): 1-12 Issue Date URL   Right Type Conference Paper TitleWeb における画像とテキストの融合 Author(s) 安岡, 孝一 Citation (2003): 1-12 Issue Date 2003-03-10 URL http://hdl.handle.net/2433/218368 Right Type Conference Paper Textversion author Kyoto University Web 1 4 7 23 [1]

More information

3. XML, DB, DB (AP). DB, DB, AP. RDB., XMLDB, XML,.,,.,, (XML / ), XML,,., AP. AP AP AP 検索キー //A=1 //A=2 //A=3 返却 XML 全体 XML 全体 XML 全体 XMLDB <root> <A

3. XML, DB, DB (AP). DB, DB, AP. RDB., XMLDB, XML,.,,.,, (XML / ), XML,,., AP. AP AP AP 検索キー //A=1 //A=2 //A=3 返却 XML 全体 XML 全体 XML 全体 XMLDB <root> <A PostgreSQL XML 1 1 1 1 XML,,, /. XML.,,, PostgreSQL.. Implementation of Yet Another XML-type for PostgreSQL Toshifumi Enomoto, 1 Gengo Suzuki, 1 Nobuyuki Kobayashi 1 and Masashi Yamamuro 1 There are various

More information

コンピュータグラフィックス - 第4回 色彩の表現

コンピュータグラフィックス - 第4回 色彩の表現 .. 4 2013 10 9 ( ) 2013 10 9 1 / 22 3 3 3 ( ) 2013 10 9 2 / 22 380 nm 780 nm 1 nm = 10 9 m ( ) 2013 10 9 3 / 22 3 3 (S M L ) 3 3 3 ( ) 2013 10 9 4 / 22 加法混色 光の 3 原色を組み合わせることで 様々な色を表現できる 光を重ねて別の色を作ることを加法混色と呼ぶ

More information

rzamjpdf.ps

rzamjpdf.ps IBM i 7.2 XML Toolkit IBM i 7.2 XML Toolkit 15 IBM i 7.2 ( 5770-SS1) RISC CISC IBM IBM i Version 7.2 Programming Programming XML Toolkit 1 2014.4 Copyright IBM Corporation 1999, 2013. XML Toolkit.............

More information

分散情報システム構成法

分散情報システム構成法 Web Information System Design No.6 Web 文書空間 萩野達也 (hagino@sfc.keio.ac.jp) 1 Web 文書の全体構成要素 Web 文書 XML データ文書 XML アプリケーション HTTP URI 参照操作 Unicode 2 HTML 以外の XML アプリケーション HTML の成功を XML に Extensible Stylesheet

More information

XISによる効率良いシステム開発のポイント

XISによる効率良いシステム開発のポイント XML excelon XIS excelon XIS XML April 17, 2002 excelon Extensible Information Server Page 2 Overview XML DOM (XML ) ( ) excelon XIS (DOM ) CRUD ( XML ) amazon.com 2,000 / 100 / GUI / ( 10 ) Windows (NT/2000/XP),

More information

新しいイテレーション型開発

新しいイテレーション型開発 2 XAML WPF Windows Presentation Foundation 4 / 4 5 Silverlight 5 XAML 6 6 XAML 6 6 7 8 8 9 XAML 9 XAML 12 12 / / 13 / 14 15 XAML 15 Expression Blend 15 Visual Studio 2008 16 XAML 16 Microsoft Expression

More information

XSLT 4-1

XSLT 4-1 XSLT 4-1 XSLT XML XML HTML XSLT 1.0 (W3C ) http://www.w3.org/tr/xslt http://www.zvon.org/xxl/xsltreference/output/ ( ) XML 4-2 XSLT XML

More information

XML基礎

XML基礎 基礎から学ぶ XML 特集 - 基本の基本! XML と文法 - インフォテリア株式会社 XML とは XML 1.0 W3Cの勧告 XML 1.1 XML 文書 HTMLとXML XML(Extensible Markup Language) 1.0 拡張可能なマークアップ言語 1998 年にW3Cから勧告された XML 1.0 ベンダーやプラットフォームから独立したインターネット標準 http://www.w3.org/tr/xml/

More information

SGML HTML XML Markup Language Web HTML HTML SGML Standard Generalized Markup Language Markup Language DTD Document Type Definition XML SGML Markup Language HTML XML HTML XML JavaScript JAVA CGI HTML Web

More information

ppt

ppt XML 2004-09-15 ( XML(Extended Markup Language XML XML HTML XML XML (? W3C(World Wide Web Consortium XML 2004-09-15 2 XML XML 1.0 (Extensible Markup Language W3C(World Wide Web Consortium http://www.w3/org/

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

オントロジ入門

オントロジ入門 Web Web 2004-01-23 XML XML Web WG Web ( ) Web (RDF RDF ) (OWL) ( ) WG ( ) 2004-01-23 2 Web Web Web XML ( ) 2004-01-23 3 Web Web 2 Web HTML(XHTML) ( ) Web ( ) 2 Web 2004-01-23 4 2 Web Web (XHTML) (RDF)

More information

OSC_isshiki_090710c.ppt

OSC_isshiki_090710c.ppt Web 2009 W3C/Kwio SiteManager ECHONET Keio-contact@w3.org http://www.w3.org 1 2 1990 Web W3C Tim Berners-Lee Web W3C CERN Web 3 W3C W3C=World Wide Consortium 4 W3C Leading the Web to Its Full Potential...

More information

XMLとは、eXtensible Markup Languageの略で、拡張可能なマーク付け言語である

XMLとは、eXtensible Markup Languageの略で、拡張可能なマーク付け言語である XML ... 2... 2... 2... 3... 4... 4... 5... 6... 6... 6... 7... 8... 8... 9... 9... 12... 12... 14... 15... 15... 15... 15... 15... 16... 16... 17... 17... 18... 19... 20... 21... 22... 28... 29... 30 1

More information

1 1 2 Unix 1 3 4 4 SVG 6 4.1 SVG................................... 6 4.2 SVG......................... 6 4.3 SVG.............................. 7 4.4..

1 1 2 Unix 1 3 4 4 SVG 6 4.1 SVG................................... 6 4.2 SVG......................... 6 4.3 SVG.............................. 7 4.4.. WWW 17 2 10 1 1 2 Unix 1 3 4 4 SVG 6 4.1 SVG................................... 6 4.2 SVG......................... 6 4.3 SVG.............................. 7 4.4................................. 8 4.5...........................

More information

untitled

untitled DCMI nagamori@slis.tsukuba.ac.jp DCMI Metadata Schema Registry DCMI Dublin Core Metadata Initiative authoritative source 2004/10/29 2 1 Metadata is the information and documentation which makes data understandable

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション TEL:045-866-8114 E-Mail: s-masui@msa.hitachi-sk.co.jp TEL:03-3491-7688 E-Mail: improj@pmcnet.co.jp PMC ( ) http://www.pmcnet.co.jp PS PS PS etc. etc. etc. W3C DOM XML XML B2 Enterprise Publisher

More information

() < > </ > / HTML SGML HTML 1.1 DTD DTD ( DTD (prolog) )SGML 1. DTD ( ) 2. DTD <!-- DTD-- > <!ELEMENT MAIL - - ((TO,FROM)?,DATE?,BODY) > <!ELEMENT TO

() < > </ > / HTML SGML HTML 1.1 DTD DTD ( DTD (prolog) )SGML 1. DTD ( ) 2. DTD <!-- DTD-- > <!ELEMENT MAIL - - ((TO,FROM)?,DATE?,BODY) > <!ELEMENT TO 2009 2D SGML,XML,HTML 2009 11 11 1 SGML SGML Standard Generalized Markup Language (ISO 8879) (JIS X 4151) < >< >SGML< > < >asakawa@ieee.orgSGML < >SGML SGML Standard Generalized Markup

More information

スライド タイトルなし

スライド タイトルなし XML XML - XML - 2001 Otsuka Corporation, All rights Reserved. XML XML XML XML XML XML XML XML 1998 2 W3C XML = extensible Markup Language SGML ISO8879:1986 1 HTML W3C 1997 Web XML W3C 1998/2 XML XHTML

More information

Encryption Security

Encryption Security 200426 XML Consortium WG XML Signature XML Encryption XKMS2.0 X-KRSS:Register X-KISS:Locate X-KISS:Validate WS-Security XACML WG 2004/02/06 1 XML WG 2004/02/06 2 2001 2002 2003 XKMS XML SAML SSO SAML XML

More information

スライド 1

スライド 1 XML with SQLServer ~let's take fun when you can do it~ Presented by 夏椰 ( 今川美保 ) Agenda( その 1) XML XML XSLT XPath XML Schema XQuery Agenda( その 2) SQLServer における XML XML 型 XML Schema XQuery & XPath チェック制約

More information

Testing XML Performance

Testing XML Performance - DataPower Technology, Inc. XML Web 2003 5 DATAPOWER XML WEB - Copyright 2003DataPower Technology, Inc. All Rights Reserved. DataPower Technology, Inc. DataPower DataPower ( ) DataPower 2003 5 2/17 DATAPOWER

More information

橡SPA2000.PDF

橡SPA2000.PDF XSLT ( ) d-oka@is.s.u-tokyo.ac.jp ( ) hagiya@is.s.u-tokyo.ac.jp XSLT(eXtensible Stylesheet Language Transformations) XML XML XSLT XSLT XML XSLT XML XSLT XML XML XPath XML XSLT XPath XML XSLT,XPath 1 XSLT([6])

More information

WS-I Basic Profile 1.0 の概説

WS-I Basic Profile 1.0 の概説 WS-I Basic Profile 1.0 Copyright 2003 Hitachi, Ltd.; NEC Corporation; and Fujitsu Limited. All Rights Reserved. 1 1. Basic Profile 2. Basic Profile 1.0 3. (Conformance) 4. MESSAGE 5. DESCRIPTION 6. REGDATA

More information

_02_3.ppt

_02_3.ppt XML DB Oracle Corporation Agenda RDB XML SQL/XML XML DB XML Oracle Corporation 2 Agenda RDB XML SQL/XML XML DB XML Oracle Corporation 3 RDB-XML RDB XML Oracle Corporation 4 XML RDB [Oracle] Extract ExtractValue

More information

AlloraマッパーにおけるXpriori・XMSデータベースの使用方法

AlloraマッパーにおけるXpriori・XMSデータベースの使用方法 Allora Xpriori XMS I. XMS Allora (1) Allora-4.2-7 http://www.hitsw.com/index.html (2) Xpriori XMS Database Client http://xpriori.com/developers/download/index.html (3) Xpriori ( Neocore API Java lib) xmsclient.jar

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

shimizu_thesis03.dvi

shimizu_thesis03.dvi 2003 2 i 1 3 1.1... 3 1.2... 3 1.3... 3 1.4... 4 2 5 2.1... 6 2.2... 6 2.3... 8 2.3.1... 10 2.4... 11 3 17 3.1... 17 3.1.1... 17 3.1.2... 17 3.2... 19 3.2.1... 19 3.2.2... 20 3.3... 20 3.4... 20 4 23 4.1

More information

HTML文書の作成

HTML文書の作成 99 C HTML 1 1 2 HTML 1 3 2 4 HTML 2 4.1... 2 4.2... 3 4.3... 5 5 HTML 8 5.1... 8 5.2... 10 5.3... 12 6 HTML 13 7 13 1 HTML HTML [1] 2 HTML HTML Hyper-Text Markup Language World Wide Web (WWW)[2] HTML Hyper-Text

More information

OSF2009発表用抜粋版 A4.ppt

OSF2009発表用抜粋版 A4.ppt Open Source Conference 2009 Web 2009 2 20 Dr. Prof. W3C/Keio Site Manager keio-contact@w3.org http://www.w3.org 1 2 W3C 3 Web 1990 Web Tim Berners-Lee Web W3C CERN Web 4 W3C 5 W3C Leading the Web to Its

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

paper.pdf

paper.pdf Cop: Web 1,a) 1,b) GUI, UI,,., GUI, Java Swing., Web HTML CSS,. CSS,, CSS,.,, HTML CSS Cop. Cop, JavaScript,,. Cop, Web,. Web, HTML, CSS, JavaScript, 1., GUI, Web., HTML CSS (UI), JavaScript, Web GUI.

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

XML Consortium XML XML Consortium Canon, Inc. Yoshikazu Yokomizo XML Consortium HTML CSS1 CSS2 XSL 1.0 XSLT V1.0 XPath 1.0 XML Base XML Sche

XML Consortium XML XML Consortium Canon, Inc. Yoshikazu Yokomizo XML Consortium HTML CSS1 CSS2 XSL 1.0 XSLT V1.0 XPath 1.0 XML Base XML Sche XML 2006.5.24 HTML CSS1 CSS2 XSL 1.0 XSLT V1.0 XPath 1.0 XML Base XML Schema Part 0 W3C XML Schema Part 1 HTML 4.0 XHTML 1.0 Namespaces XPointer 1.0 XLink 1.0 XML 1.0 XML Schema Part 2 XML I/F DOM Level1

More information

Oracle XDK(10.1.2)の技術概要

Oracle XDK(10.1.2)の技術概要 Oracle XDK 10.1.2 2005 1 Oracle XDK 10.1.2... 3... 3 Oracle XML Developer's Kit 10g... 4... 4... 5... 5 XML /XSL... 5 XML... 6 XML Class Generator... 6 XML JavaBeans... 6 XML SQL Utility... 7 XSQL Pages...

More information

# let st1 = {name = "Taro Yamada"; id = };; val st1 : student = {name="taro Yamada"; id=123456} { 1 = 1 ;...; n = n } # let string_of_student {n

# let st1 = {name = Taro Yamada; id = };; val st1 : student = {name=taro Yamada; id=123456} { 1 = 1 ;...; n = n } # let string_of_student {n II 6 / : 2001 11 21 (OCaml ) 1 (field) name id type # type student = {name : string; id : int};; type student = { name : string; id : int; } student {} type = { 1 : 1 ;...; n : n } { 1 = 1 ;...; n = n

More information

3 3.1 SSedit ua012345% ssedit SuperSQL config.ssql log.txt( logs.txt) SSedit SSedit 3.2 ssql Putty SSedit ua012345% ssql HTML /public html/ssql.ssql 4

3 3.1 SSedit ua012345% ssedit SuperSQL config.ssql log.txt( logs.txt) SSedit SSedit 3.2 ssql Putty SSedit ua012345% ssql HTML /public html/ssql.ssql 4 SuperSQL SuperSQL 2016 12 13 1 SuperSQL ITC 2 SuperSQL 2.1 public html/ssql 2.2 SSedit SSedit (3.1 ) postgresql (ua123456 ) 131.113.101.124 /public html/ssql SuperSQL HTML /public html/ssql http://user.keio.ac.jp/

More information

CX-Checker CX-Checker (1)XPath (2)DOM (3) 3 XPath CX-Checker. MISRA-C 62%(79/127) SQMlint 76%(13/17) XPath CX-Checker 3. CX-Checker 4., MISRA-C CX- Ch

CX-Checker CX-Checker (1)XPath (2)DOM (3) 3 XPath CX-Checker. MISRA-C 62%(79/127) SQMlint 76%(13/17) XPath CX-Checker 3. CX-Checker 4., MISRA-C CX- Ch CX-Checker: C 1 1 2 3 4 5 1 CX-Checker CX-Checker XPath DOM 3 CX-Checker MISRA-C CX-Checker: A Customizable Coding Checker for C TOSHINORI OSUKA, 1 TAKASHI KOBAYASHI, 1 JUNICHI MASE, 2 NORITOSHI ATSUMI,

More information

¥Í¥Ã¥È¥ï¡¼¥¯¥×¥í¥°¥é¥ß¥ó¥°ÆÃÏÀ

¥Í¥Ã¥È¥ï¡¼¥¯¥×¥í¥°¥é¥ß¥ó¥°ÆÃÏÀ 8 : Web Same Origin Policy : XML :, XML http://www.w3.org/xml/ http://www.w3.org/tr/dom-level-3-core 1 / 31 xml.html: XML xpath-test.html: XPATH valid-test.html: XML (IE ) xslt-test.html: JS XSLT xslt-test.xml:

More information

橡dbweb2002-sato.PDF

橡dbweb2002-sato.PDF Web Web 1 Web XML DB Web EAI 2 RDF RDF Schema DAML+OIL OWL (Web Ontology Language) 3 Resource Description Framework (RDF) W3C XML http://www.net.intap.or.jp/intap/s-web/

More information

Web (RDF) RDF RSS FOAF RDF Web RDF RDF google rdf filetype:rdf rdf Web 122, , [1] ( ) [2] RDF RSS 6

Web (RDF) RDF RSS FOAF RDF Web RDF RDF google rdf filetype:rdf rdf Web 122, , [1] (   ) [2] RDF RSS 6 Web Web NEC Web (RDF) RDF RSS FOAF RDF Web RDF RDF google rdf filetype:rdf rdf Web 122,000 2003 11 5,440 2003 5 7 [1] ( http://www.atmarkit.co.jp/ ) [2] RDF RSS 6% 7% 39% RDF RSS 42% RSS (RDF Site Summary)

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

XML Consortium & XML Consortium 1 XML Consortium XML Consortium 2

XML Consortium & XML Consortium 1 XML Consortium XML Consortium 2 & 1 2 TCO DB2 DB2 UDB DB DB V8.2 V8.2 DB2 DB2 UDB V8.1 V8.1 DB2 9 3 CLOB XML XML DB2 9 purexml XML XML DOC XML DOC XML DOC XML DOC VARCHAR/CLOB XML ( ) 4 XML & XML ( & ) DB2 XML SQL/XML DB2 DB2 : DB2 /

More information

G-XML EWEB-3K-N064

G-XML EWEB-3K-N064 G-XML EWEB-3K-N064 PreSerV for Web G-XML i 1... 1 1.1 G-XML... 1 1.2... 2 1.2.1 PreSerV for Web... 2 1.2.2 G-XML... 2 1.2.3 SVG... 2 2 G-XML... 3 2.1 G-XML... 3 2.2... 4 2.3... 4 3... 6 3.1... 6 3.2...

More information

WS-I Basic Profile 1.0 の概説

WS-I Basic Profile 1.0 の概説 WS-I Basic Profile 1.0 Copyright(C) Hitachi, Ltd. & NEC Corporation & FUJITSU LIMITED (2003), All Rights Reserved. 1 1. Basic Profile 2. Basic Profile 1.0 3. (Conformance) 4. MESSAGE 5. DESCRIPTION 6.

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

\\afs001-0m0005\project02\A32\M

\\afs001-0m0005\project02\A32\M Technical Information 2004.09 2009.04 Store Request Query Request Retrieve Request DICOM Client Application Remote SCP Remote Query/Retrieve SCP Image Stored * DICOM Server Application Remote SCU Print

More information

Microsoft PowerPoint - 05XMLによるデータの表現.pptx

Microsoft PowerPoint - 05XMLによるデータの表現.pptx 九州大学工学府海洋システム工学専攻講義資料担当 : 木村船舶海洋情報学 05. XMLによるデータの表現 XML(Extensible Markup Language) 情報を保管 ラベル付け 構造化 または保護するための コンテナ のようなもの異なるシステムが相互にコミュニケーションするための手段 基盤 1) データは XML 文書 ( テキスト ) で表現される 2) タグによって情報は 要素

More information

データ連携ソリューションスイート 「ASTERIA WARP」  ご紹介資料

データ連携ソリューションスイート 「ASTERIA WARP」  ご紹介資料 RIA ASTERIA WARP / ) ) CSV) ) / / ) Web A B ASTERIA DB DB C (Excel ) Mail Excel / 6 A RDB ORACLE B XML DB Cyber Luxeon BI CSV Excel ASTERIA WARP Work-Flow EIP Front-End B2B EDI CRM BI Web OLAP Mail BPM

More information

/var/lib/sharelatex/data/compiles/5b35c6e168aeba3d a72a7acd11f6ba07fbbff68/output.dvi

/var/lib/sharelatex/data/compiles/5b35c6e168aeba3d a72a7acd11f6ba07fbbff68/output.dvi SuperSQL 2018 7 5 1 2 2 2 2.1.................................... 2 2.2 SSedit....................................... 2 3 2 3.1 SSedit..................................... 2 3.2 ssql.................................

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 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

※サンプルアプリケーションを固めたファイル(orcasample

※サンプルアプリケーションを固めたファイル(orcasample SDK XML... 3... 4 orca... 4 table-name...4 method... 4 functions... 4 function... 5 function-params... 5 function-param... 5... 6... 6... 8... 10... 12... 14 dbs... 18 dbs... 18 dbs... 18... 18... 19...

More information

untitled

untitled 2004 03 06 DEWS2004 in 1. 2. Continuous Query 3. 4. GPS HTML, XML RFID DB DB Web URL TS URL Load Description 7 /echo.cgi 0.41 CGI Prog. RDB TS Load Mem 1 0.38 8688k 6 0.41 7808k TS URL IP 5 /top.html

More information

Oracle XML DB によるスケーラビリティおよびパフォーマンス検証 - MML v.3.0

Oracle XML DB によるスケーラビリティおよびパフォーマンス検証 - MML v.3.0 Oracle XML DB MML v3.0 2004 5 27 1 Memo 1 Agenda XML MML v3.0 2 Oracle XML Oracle XML DB XML API Oracle XML DB W3C XML Schema 1.0 XPath 1.0 XSLT 1.0 Oracle W3C XML Schema Oracle 2 XML Oracle XML Developer

More information

情報システム 第6回講義資料

情報システム 第6回講義資料 情報学科 CS コース情報システム (3 年後期 ) 講義ノート ー第 6 回ー XSLT, Xlink/Xpointer, インデックス 田中克己 角谷和俊 ( 参考図書 ) S.Abiteboul, P. Buneman, and D. Suciu, Data on the Web From Relations to Semistructured Data and XML, Morgan Kaufmann

More information

E MathML W3C MathJax 1.3 MathJax MathJax[5] TEX MathML JavaScript TEX MathML [8] [9] MathSciNet[10] MathJax MathJax MathJax MathJax MathJax MathJax We

E MathML W3C MathJax 1.3 MathJax MathJax[5] TEX MathML JavaScript TEX MathML [8] [9] MathSciNet[10] MathJax MathJax MathJax MathJax MathJax MathJax We MathML TEX 1,a) 1,b) MathML TEX JavaScript MathJax TEX GUI MathML TEX MathJax Prototype of e-learning and Communication Systems to Support Displaying Math Equations with MathML and TEX Nobuo Yamashita

More information

_02-5.ppt

_02-5.ppt CONNECT EVERYTHING. ACHIEVE ANYTHING. Sonic XML Server 2005 3 14 Agenda 2 2005 Sonic Software Corporation Sonic Software Corporation 1998 1999 12 SonicMQ 2002 3 Sonic ESB ESB

More information

XML Week Web 2.0 Day (1) SOA2.0 KM2.0? REST API + XSLT Amazon hon. hon.jp API XML Consortium XML ( ) REST(GET)API Amazon.co.jp hon.jp REST

XML Week Web 2.0 Day (1) SOA2.0 KM2.0? REST API + XSLT Amazon hon. hon.jp API XML Consortium XML ( ) REST(GET)API Amazon.co.jp hon.jp REST XML Week Web 2.0 Day (1) SOA2.0 KM2.0? REST API + XSLT Amazon hon. hon.jp API XML Consortium 2006-05-23 XML ( ) REST(GET)API Amazon.co.jp hon.jp REST + XSLT ( ) hon.jp hon.jp + Aamazon.co.jp Exif to RDF(kanzaki.com)

More information

スライド 1

スライド 1 Jameleon 2007130 Agenda Jameleon Jameleon Jameleon a) b) c) d) e) f) g) h) i) Jameleon Jameleon http://jameleon.sourceforge.net/ 200612123.3-M4 GNU Lesser General Public LicenseGNU LGPL Jameleon JUnit

More information

DEIM Forum 2013 B5-2 RMX RMX RMX $, RMX Implementation of the E-m

DEIM Forum 2013 B5-2 RMX RMX RMX $, RMX Implementation of the E-m DEIM Forum 2013 B5-2 RMX 223 8522 3 14 1 E-mail: {matt,zonop,obunai}@db.ics.keio.ac.jp, toyama@ics.keio.ac.jp RMX RMX $, RMX Implementation of the E-mail Text Generating Function and Referring to Body

More information

001-002_...j.f......_..

001-002_...j.f......_.. 1 2 1 Chapter of Export 1 10 2 12 3 14 4 16 5 18 6 20 7 22 8 24 9 26 10 28 11 30 12 32 13 34 14 36 15 38 16 40 17 42 18 44 19 46 3 20 48 21 50 22 52 23 54 24 56 25 58 26 60 27 62 28 64 29 66 30 68 Chapter

More information

Condition DAQ condition condition 2 3 XML key value

Condition DAQ condition condition 2 3 XML key value Condition DAQ condition 2009 6 10 2009 7 2 2009 7 3 2010 8 3 1 2 2 condition 2 3 XML key value 3 4 4 4.1............................. 5 4.2...................... 5 5 6 6 Makefile 7 7 9 7.1 Condition.h.............................

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

"-./0%. "-%!"#$#% $%&'(%)*+,%.!"#+$,$% &'()*% $%&'-(.(/%+,% $%&'0%12*+,'% 1 RMX.. grade gradetype= integer grade[

-./0%. -%!#$#% $%&'(%)*+,%.!#+$,$% &'()*% $%&'-(.(/%+,% $%&'0%12*+,'% 1 RMX.. grade gradetype= integer grade[ DEIM Forum 2014 C8-5 RMX 223 8522 3 14 1 E-mail: {yohei,kita}@db.ics.keio.ac.jp, toyama@ics.keio.ac.jp RMX,,, RMX., RMX, RMX,., RMX,., RMX,.,,., RMX 1. RMX (Rule-based e-mail exchange System).,,., RMX,

More information

「Android Studioではじめる 簡単Androidアプリ開発」正誤表

「Android Studioではじめる 簡単Androidアプリ開発」正誤表 Android Studio Android 2016/04/19 Android Studio Android *1 Android Studio Android Studio Android Studio Android Studio Android PDF : Android Studio Android Android Studio Android *2 c R TM *1 Android

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

ucR/XML: XML によるucR graph のシリアライズ

ucR/XML: XML によるucR graph のシリアライズ [White Paper] Ubiquitous ID Center Specification DRAFT 2013-01-16 ucr/xml: XML による ucr graph のシリアライズ ucr/xml: Serialization of ucr graph over XML Number: Title: ucr/xml: XML による ucr graph のシリアライズ ucr/xml:

More information

WebOS aplat WebOS WebOS 3 XML Yahoo!Pipes Popfry UNIX grep awk XML GUI WebOS GUI GUI 4 CUI

WebOS aplat WebOS WebOS 3 XML Yahoo!Pipes Popfry UNIX grep awk XML GUI WebOS GUI GUI 4 CUI 7 XML Week Web WebOS WebShell WebOS WebOS GUI WebOS WebOS 2 WebOS aplat WebOS WebOS 3 XML Yahoo!Pipes Popfry UNIX grep awk XML GUI WebOS GUI GUI 4 CUI CUI JavaScript I/O CommandClass WebShell webshell

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

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

org/ghc/ Windows Linux RPM 3.2 GHCi GHC gcc javac ghc GHCi(ghci) GHCi Prelude> GHCi :load file :l file :also file :a file :reload :r :type expr :t exp

org/ghc/ Windows Linux RPM 3.2 GHCi GHC gcc javac ghc GHCi(ghci) GHCi Prelude> GHCi :load file :l file :also file :a file :reload :r :type expr :t exp 3 Haskell Haskell Haskell 1. 2. 3. 4. 5. 1. 2. 3. 4. 5. 6. C Java 3.1 Haskell Haskell GHC (Glasgow Haskell Compiler 1 ) GHC Haskell GHC http://www.haskell. 1 Guarded Horn Clauses III - 1 org/ghc/ Windows

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

Microsoft Word S312-UCR_spatial_network仕様書 doc

Microsoft Word S312-UCR_spatial_network仕様書 doc [White Paper] T-Engine Forum Ubiquitous ID Center Specification DRAFT 2006-10-12 空間ネットワーク語彙 UCR Spatial Network Number: Title: 空間ネットワーク語彙 UCR Spatial Network Status: [X] Working Draft, [ ] Final Draft

More information

Vol.56 No (Mar. 2015) Canvas SVG HTML Web Viewport Library UML Canvas SVG 1,000 HTML SVG Viewport Library Viewport Library HTML HTML Web H

Vol.56 No (Mar. 2015) Canvas SVG HTML Web Viewport Library UML Canvas SVG 1,000 HTML SVG Viewport Library Viewport Library HTML HTML Web H Vol.56 No.3 1039 1048 (Mar. 2015) Web 1,a) 1,b) 2014 6 30, 2014 10 8 HTML5 Web HTML5 HTML Canvas SVG HTML Canvas SVG Web Viewport Library Viewport Library HTML SVG Viewport Library Viewport Library AssureNote

More information

Microsoft Word - 検証結果まとめ_ doc

Microsoft Word - 検証結果まとめ_ doc 気象庁防災情報 XML フォーマット スキーマとサンプル電文の動作検証について 平成 21 年 12 月 28 日付 気象庁防災情報 XML フォーマット スキーマとサンプル電文の修正 追加提供について XML コンソーシアムのご協力により 各種 XML 関連ソフトウェアにおける動作状況について検証頂きました 同仕様をご利用いただく際の参考とするべく 検証結果を公開いたします 要旨 各種ベンダー系

More information

2009 Web B012-1

2009 Web B012-1 2009 Web 2010 2 1 5108B012-1 1 4 1.1....................................... 4 1.2................................... 4 2 Web 5 2.1 Web............................... 5 2.2 Web.................................

More information

IT / KPI IT WF(XOML),BPEL WSDL XSD IT XSD WSDL BPEL XOML XML

IT / KPI IT WF(XOML),BPEL WSDL XSD IT XSD WSDL BPEL XOML XML SOA XML Week SOA IT IT IT / KPI IT WF(XOML),BPEL WSDL XSD IT XSD WSDL BPEL XOML XML Web Web WCF Web WCF WindowsCommunityFoundation NET Framework 3.0 Web WCF ABC WCF Address WHERE Binding HOW Contract WHAT

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション 1 2 3 /usr/local javalib xerces-2_6_2 xalan-2_6_0 4 XERCES_HOME=/usr/local/javalib/xerces-2_6_2 CLASSPATH=$XERCES_HOME/xmlParserAPIs.jar:$CLASSPATH CLASSPATH=$XERCES_HOME/xercesImpl.jar:$CLASSPATH CLASSPATH=$XERCES_HOME/xercesSamples.jar:$CLASSPATH

More information

情報の構造とデータ処理

情報の構造とデータ処理 mizutani@ic.daito.ac.jp 2014 SQL information system input process output (information) (symbols) (information structure) (data) 201411 ton/kg m/feet km 2 /m 2 (data structure) (integer) (real) (boolean)

More information

ii II Web Web HTML CSS PHP MySQL Web Web CSS JavaScript Web SQL Web 2014 3

ii II Web Web HTML CSS PHP MySQL Web Web CSS JavaScript Web SQL Web 2014 3 Web 2.0 Web Web Web Web Web Web Web I II I ii II Web Web HTML CSS PHP MySQL Web Web CSS JavaScript Web SQL Web 2014 3 1. 1.1 Web... 1 1.1.1... 3 1.1.2... 3 1.1.3... 4 1.2... 4 I 2 5 2. HTMLCSS 2.1 HTML...

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

XML XML XML XML XML XML 2000 12 XSL-FO XML XSL Formatter XSL XSL-FO XML XSL Formatter XML 1. XSL Formatter 2. D XML /XML 3. S XSL 4. O F 5. -2-

XML XML XML XML XML XML 2000 12 XSL-FO XML XSL Formatter XSL XSL-FO XML XSL Formatter XML 1. XSL Formatter 2. D XML /XML 3. S XSL 4. O F 5. -2- XML XML XML XML XML XML 2000 12 XSL-FO XML XSL Formatter XSL XSL-FO XML XSL Formatter XML 1. XSL Formatter 2. D XML /XML 3. S XSL 4. O F 5. -2- XSL XML / XML / 1. / XML 2. / XSL 3. XSL XML XSL XSL-FO 4.

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション Web 2003, 2004 All rights reserved. 2 Agenda 3 4/12 am11:10 A B Z 4/12 am11:00 4/12 5 4/12 am11:05 UDDI XX 4/12 5 A 4/12 am11:30 B xx PDA 4 WS XML WS 16 WS WS2 Web Web WS UDDI WS1 WS4 Web Web Web WS3 Web

More information

csj-report.pdf

csj-report.pdf 527 9 CSJ CSJ CSJ 1 8 XML CSJ XML Browser (MonoForC) CSJ 1.7 CSJ CSJ CSJ 9.1 GREP GREP Unix Windows Windows (http://www.vector.co.jp/) Trn Windows Trn > > grep *.trn 528 9 CSJ A01F0132.trn:& A01M0097.trn:&

More information

Adobe Media Encoder ユーザーガイド

Adobe Media Encoder ユーザーガイド ADOBE MEDIA ENCODER CS5 & CS5.5 http://help.adobe.com/ja_jp/legalnotices/index.html iii 1............................................................................. 1.............................................................................................................

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション Biz/Browser 2005 118 Biz/Browser Rich Client Biz/Browser Macromedia Flash MX Curl Surge Runtime Adobe Acrobat B2B B2C OLAP Biz/Designer CRS Chain Reflection Script Flash MX Pro 2004 SWF Action Script Surge

More information