Bob Beauchemin Senior Staff Instructor DevelopMentor Alex Keh Senior Product Manager Oracle Corporation

Size: px
Start display at page:

Download "Bob Beauchemin Senior Staff Instructor DevelopMentor Alex Keh Senior Product Manager Oracle Corporation"

Transcription

1

2 Bob Beauchemin Senior Staff Instructor DevelopMentor Alex Keh Senior Product Manager Oracle Corporation

3 Oracle Data Provider for.net (ODP.NET)

4 Oracle.NET ODP.NET ODP.NET

5 Oracle.NET ASP.NET VB.NET C# C++.NET Any.NET Client OLE DB.NET Oracle OLE DB ODBC.NET Oracle ODBC ODP.NET Oracle

6 .NET OLE DB.NET Oracle Provider for OLE DB ODBC.NET Oracle ODBC driver ODP.NET ADO.NET ADO/Oracle OLE DB ODP.NET ADO

7 ODP.NET OLE DB.NET ODBC.NET ODP.NET Oracle Oracle OLE DB.NET ODBC.NET ODP.NET OLE DB.NET and ODBC.NET

8 A N N O U N C E M E N T Oracle Data Provider for.net OTN

9 Oracle.NET ODP.NET ODP.NET

10 ODP.NET PL/SQL Oracle LOB REF BFILE N DATE TIMESTAMP LONG RAW.NET Oracle Services for MTS ( )

11 ODP.NET Min, Max, Timeout, Lifetime, Increment, Decrement Unicode Oracle

12 ODP.NET DataReader XML DB XMLType CLOB XML PL/SQL XML DB API

13 Oracle.NET ODP.NET ODP.NET

14 ODP.NET Oracle9i Release 2 Oracle8 Oracle8i Oracle9i.NET

15 ODP.NET Disconnected Layer Connected Layer (ODP.NET) Data Layer DataSet DataAdapter Command Builder DataReader Command Transaction Connection Oracle

16 .NET Data Providers Connected Data providers ADO.NET Data providers Connection Data providers Command Resultsets DataReader

17 Data Provider DataSet DataAdapter DataSet Select/Update CommandBuilder SELECT UPDATE Specialty classes ParameterCollection Command Transaction class = local transactions Exceptions Errors DB

18 ADO.NET IDbConnection (OracleConnection) IDbCommand (OracleCommand) IDbTransaction (OracleTransaction) IDataReader, IDataRecord (OracleDataReader) OracleTransaction.Save OracleCommand.AddRowid

19 IDbConnection = common connection behavior / / ODP.NET OLE DB ODP.NET Oracle -OS - SYSDBA/SYSOPER - closed disposed

20 OLE DB ODBC No control over pool, timeout value only ODP.NET COM+ Pool

21 // build up a connection string // vanilla parms String sconn = "user id=scott;password=tiger;data source=orcl"; // add connection pooling and auto enlistment sconn += ";pooling=true;connection timeout=30;enlist=true"; // specify pool parms sconn += ";min pool size=2;max pool size=50"; // open the connection OracleConnection conn = new OracleConnection(sConn);

22 Command Command ExecuteNonQuery ExecuteScalar ExecuteReader DataReader ODP.NET SelectForUpdate RowID resultset FetchSize ChunkSize LONG/LONG RAW

23 ParameterCollection ODP.NET ODP.NET Output ODP.NET output ODP.NET

24 int[] myarraydeptno = new int[3]{1, 2, 3}; OracleConnection conn = new OracleConnection(connectStr); OracleCommand cmd = new OracleCommand( "delete dept where deptno = :1", conn); // Bind with an array of 3 items cmd.arraybindcount = 3; OracleParameter param1 = new OracleParameter(); param1.oracledbtype = OracleDbType.Int32; param1.value = myarraydeptno; cmd.parameters.add(param1); conn.open(); cmd.executenonquery();

25 PL/SQL REF Output CREATE OR REPLACE PACKAGE MyPackage AS TYPE empcur IS REF CURSOR; TYPE jobcur IS REF CURSOR; PROCEDURE GetEmpRecords( p_cursor OUT empcur, j_cursor OUT jobcur, indeptno IN NUMBER, p_errorcode OUT NUMBER); END Employees3; / CREATE OR REPLACE PACKAGE BODY MyPackage AS PROCEDURE GetEmpRecords( p_cursor OUT empcur, j_cursor OUT jobcur, indeptno IN NUMBER, p_errorcode OUT NUMBER) IS BEGIN p_errorcode := 0; OPEN p_cursor FOR SELECT * FROM emp WHERE deptno = indeptno; OPEN j_cursor FOR SELECT * FROM dept; EXCEPTION WHEN OTHERS THEN p_errorcode:= SQLCODE; END GetEmpRecords; END Employees3; /

26 Output OracleConnection conn = new OracleConnection( "data source=zmv43;user id=scott;password=tiger"); OracleCommand cmd = new OracleCommand( "Employees3.GetEmpRecords", conn); cmd.commandtype = CommandType.StoredProcedure; conn.open(); cmd.parameters.add("p_cursor", OracleDbType.RefCursor); cmd.parameters.add("j_cursor", OracleDbType.RefCursor); cmd.parameters.add("indeptno", OracleDbType.Decimal); cmd.parameters.add("p_errorcode", OracleDbType.Int32); cmd.parameters[0].direction = ParameterDirection.Output; cmd.parameters[1].direction = ParameterDirection.Output; cmd.parameters[2].value = 10; cmd.parameters[3].direction = ParameterDirection.Output; int i = cmd.executenonquery(); Console.WriteLine(cmd.Parameters[3].Value); // WORKS! OracleDataReader rdr1 = ((OracleRefCursor)cmd.Parameters[0].Value).GetDataReader(); OracleDataReader rdr2 = ((OracleRefCursor)cmd.Parameters[1].Value).GetDataReader(); while ((rdr1.read()) && (rdr2.read())) //... read both ref cursors at same time

27 DataReaders DataReaders resultsets SELECT REF DataReader.Read STRONG Oracle.NET

28 public interface IDataRecord { // some methods ommitted bool GetBoolean(int i) byte GetByte(int i) int GetBytes(int i, int fieldoffset, byte[] buffer, int bufferoffset, int length) char GetChar(int i) int GetChars(int i, int fieldoffset, char[] buffer, int bufferoffset, int length) IDataReader GetData(int i) DateTime GetDateTime(int i) decimal GetDecimal(int i) double GetDouble(int i) float GetFloat(int i) Guid GetGuid(int i) short GetInt16(int i) int GetInt32(int i) long GetInt64(int i) string GetString(int i) }

29 OracleDataReader rdr; // populate data reader... then for (int i=0;i < rdr.fieldcount; i++) { // column name String name = rdr.getname(i); } // get name and value by ordinal Console.WriteLine("column {0}: {1}", rdr.getname(i), rdr[i]); // get ordinal and value by name Console.WriteLine("column {0}: {1}", rdr.getordinal(name), rdr[name]);

30 DataReader REF OracleConnection conn = new OracleConnection( "data source=zmv43;user id=scott;password=tiger"); OracleCommand cmd = new OracleCommand( "MyPackage.GetEmpRecords", conn); cmd.commandtype = CommandType.StoredProcedure; conn.open(); cmd.parameters.add("p_cursor", OracleDbType.RefCursor); cmd.parameters.add("j_cursor", OracleDbType.RefCursor); cmd.parameters.add("indeptno", OracleDbType.Decimal); cmd.parameters[0].direction = ParameterDirection.Output; cmd.parameters[1].direction = ParameterDirection.Output; cmd.parameters[2].value = 10; OracleDataReader rdr = cmd.executereader(); bool more = true; while (more == true) { while (rdr.read()) {Console.WriteLine("reading..."); } more = rdr.nextresult(); if (more == true) Console.WriteLine("next result"); }

31 BLOB CLOB GetBytes GetChars Called with null buffer returns CLOB and BLOB length Works with LONG, LONG RAW, and BFILE as well ODP.NET

32 Oracle BLOB // Create a file and open a binary writer over it FileStream fs = new FileStream("c: mypic.bmp", FileMode.Open, FileAccess.Read); BinaryReader br = new BinaryReader(fs); OracleConnection conn = new OracleConnection( "user id=scott;password=tiger;data source=orcl"); string cmdtext = "update employees " + "set Photo=:image where EmployeeId=1"; OracleCommand cmd = new OracleCommand(cmdtext, conn); cmd.parameters.add(":image", OracleDbType.Blob); cmd.parameters["image"].value = br.readbytes((int)br.basestream.length); conn.open(); int i = cmd.executenonquery(); conn.close();

33 XMLDB XML create or replace procedure getempsasxml( theclob OUT CLOB) is ctx dbms_xmlgen.ctxhandle; begin ctx := dbms_xmlgen.newcontext('select * from emp'); theclob := dbms_xmlgen.getxml(ctx); dbms_xmlgen.closecontext(ctx); end; /

34 XMLType OracleConnection conn = new OracleConnection( "data source=zmv43;user id=scott;password=tiger"); OracleCommand cmd = new OracleCommand("getempsasxml", conn); cmd.commandtype = CommandType.StoredProcedure; cmd.parameters.add("theclob", OracleDbType.Clob); cmd.parameters[0].direction = ParameterDirection.Output; conn.open(); int i = cmd.executenonquery(); OracleClob l = (OracleClob)cmd.Parameters[0].Value; byte[] thelob = new Byte[l.Length]; l.read(thelob, 0, (int)l.length); MemoryStream ms = new MemoryStream(thelob); StreamReader sr = new StreamReader(ms); Console.WriteLine(sr.ReadToEnd());

35 Data providers OleDbError Oracle OracleError

36 OracleException OracleConnection conn = new OracleConnection( "user id=scott;password=tiger;data source=orcl"); OracleCommand cmd = new OracleCommand("ins_sel_ins", conn); cmd.commandtype = CommandType.StoredProcedure; try { conn.open(); int rows = cmd.executenonquery(); } catch (OracleException oe) { Console.WriteLine("Procedure {0} failed", oe.procedure); for (int i=0;i<oe.errors.count;i++) Console.WriteLine(oe.Errors[i].Message); } finally { if (conn.state == ConnectionState.Open) conn.close(); }

37 BiginTransaction Command OracleTransaction OracleTransaction

38 System.EnterpriseServices MSDTC COM+ ServicedComponent COM+ ComEmulateAttribute COM+ ODP.NET Oracle Services for MTS

39 EnterpriseServices // require a distributed transaction for this class [Transaction(TransactionOption.Required, Isolation=TransactionIsolationLevel.ReadCommitted)] public class DoTx : ServicedComponent { // only no-arg constructors public DoTx() { } // autocomplete true is the default [AutoComplete(false)] public void DoDatabase() { OracleConnection conn = null; OracleDataReader rdr; try { conn = new OracleConnection( "user id=scott;password=tiger;data source=orcl"; conn.open(); OracleCommand cmd = new OracleCommand( "select * from emp", conn); rdr = cmd.executereader();

40 nterpriseservices (2) } } while (rdr.read()) { // do something with those rows } rdr.close(); cmd.commandtext = "delete emp where empno = 99999"; cmd.executenonquery(); // if I get here I vote to commit ContextUtil.SetComplete(); } catch (Exception e) { ContextUtil.SetAbort(); // rethrow the exception throw(e); } finally { // this closes the command and datareader if (conn.state!= ConnectionState.Closed)) conn.close(); }

41 Oracle.NET ODP.NET ODP.NET

42 Dell Computer PC Dell eordermanagement ODP.NET REF LOB XML DB ODP.NET XML

43 ComponentOne Visual Studio.NET ComponentOne Data Objects for.net ODP.NET Oracle

44 DataTrak EDC Electronic Data Capture Central Admin and DATAUnifyer ODP.NET XML You can tell that ODP.NET was designed by people who built applications before, it is easy to use, provides me access to all the features of the database I always wanted to take advantage of and it is absolutely intuitive. -- Mario Jugel, Senior Software Engineer

45 ODP.NET Oracle on Windows Book: Oracle9i for Windows 2000 Tips and Techniques Or you can order on Amazon.com

46 Q U E S T I O N S A N S W E R S

47 Oracle Corporation Using the Oracle Data Provider for.net ppt

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

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

Oracle Developer Days

Oracle Developer Days 1 Oracle データベースを利用した Microsoft.NET 開発 - 応用編 - Session A-9 日本オラクル株式会社パートナービジネス本部シニアコンサルタント弥田尚子 2 1 はじめに Oracle Data Provider for.net(odp.net) は Oracle 固有の API を使用し あらゆる.NET アプリケーションから Oracle へのアクセスを可能にする接続ミドルウェアです

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

Microsoft PowerPoint - doc15409.ppt

Microsoft PowerPoint - doc15409.ppt .NET 環境における Oracle DB の活用 日本オラクル株式会社 本資料では.NET 環境から Oracle RDBMS にネイティブに接続するためのミドルウェアである Oracle Data Provider for.net に関して説明しています ==================== 改訂記録 ==================== 2003 年 3 月初版 2004 年 7 月第

More information

<Documents Title Here>

<Documents Title Here> !?.NET Oracle -.NET with ODP.NET - oo4o ODP.NET Creation Date: Aug. 3, 2004 Last Update: Sep 28, 2004 Version: 1.0 oo4o ODP.NET Document Control Internal Use Only Author Hiroshi Ota Change Logs Date Author

More information

Visual Basic Oracle Database 11 Release 1

Visual Basic Oracle Database 11 Release 1 Visual Basic 2008 + Oracle Database 11 Release 1 2008.01.26 初音玲 Part.1 Oracle Database 製品について Oracleクライアントコンポーネントについて ODP.NETについて OracleConnectionクラスについて Oracle Database 製品について Oracleクライアントコンポーネントについて

More information

Microsoft PowerPoint - odd_odpnet.ppt

Microsoft PowerPoint - odd_odpnet.ppt 1 Oracle データベースを利用した Microsoft.NET 開発 - 基礎編 - Session A-8 2 本セッションの内容 ODP.NET 概要 Oracle の Windows 対応への取り組み ODP.NET とは? ODP.NET の機能面におけるポイント ODP.NET オブジェクトモデル ODP.NET の使い方 ODP.NET の入手とインストール Visual Studio

More information

Oracle Lite Tutorial

Oracle Lite Tutorial !?.NET Oracle -.NET with ODP.NET - 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 Log

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

_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

untitled

untitled Grapecity -.NET with GrapeCity - ActiveReports Creation Date: Nov. 30, 2005 Last Update: Nov. 30, 2005 Version: 1.0 Grapecity Microsoft Visual Studio.NET VB.NET Oracle Tips ActiveReports ActiveReports.NET

More information

スライド 1

スライド 1 自己紹介 Z80 アセンブラ 6809 アセンブラ F-BASIC N88-BASIC FORTRAN 77 COBOL LISP Turbo Pascal Prolog KABA C 言語 M シリーズ アセンブラ PL/I VB3.0~ PL/SQL T-SQL VB2005/2008 タイトルの意味は? Visual Basic 2008 + Oracle Database 11g Release

More information

Visual Basic Oracle Database 11g Release 1

Visual Basic Oracle Database 11g Release 1 Visual Basic 2008 + Oracle Database 11g Release 1 2008.06.07 初音玲 XML WEB サービス Part.3 index WEBサービス OracleとADO.NETの関係接続データ取得データ更新権限 自己紹介 Z80 アセンブラ 6809 アセンブラ F-BASIC N88-BASIC FORTRAN 77 COBOL LISP Turbo

More information

untitled

untitled Oracle on Windows etc http://www.oracle.co.jp/campaign/mb_tech/ Windows Server System Center / OTN Japan http://www.oracle.com/technology/global/jp/tech/windows/.net + Oracle Database.NET Developer Center

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

Visual Studio Oracle Database 11g アプリケーション開発入門

Visual Studio Oracle Database 11g アプリケーション開発入門 Oracle on Windows etc http://www.oracle.co.jp/campaign/mb_tech/ Windows Server System Center / OTN Japan http://www.oracle.com/technology/global/jp/tech/windows/.net + Oracle Database.NET Developer Center

More information

Microsoft Word - 430_15_Developing_Stored_Procedure.doc

Microsoft Word - 430_15_Developing_Stored_Procedure.doc Java Oracle 1998 11 Java 3 Java Web GUI Java Java Java Oracle Java Oracle8i Oracle / Oracle Java Virtual Machine VM CORBA Enterprise JavaBeans Oracle Java Java Java Oracle Oracle Java Virtual Machine Oracle

More information

Windowsユーザーの為のOracle Database セキュリティ入門

Windowsユーザーの為のOracle Database セキュリティ入門 Oracle on Windows etc http://www.oracle.co.jp/campaign/mb_tech/ Windows Server System Center / OTN Japan http://www.oracle.com/technology/global/jp/tech/windows/.net + Oracle Database.NET Developer Center

More information

NetCOBOL for .NET 応用編

NetCOBOL for .NET 応用編 5.1 NetCOBOL for.net 5.2 ADO.NET 5.3 SQL 5.4 READ/WRITE 5.5 5.6 SQL CLR 125 NetCOBOL for.netread/write SQL.NET FrameworkADO.NET 3 Windows NetCOBOL (Oracle Pro*COBOL) READ/WRITE Btrieve Pervasive PowerRDBconnector

More information

いまさら聞けないVB2008 ADO.NET超入門

いまさら聞けないVB2008 ADO.NET超入門 自己紹介 Z80 アセンブラ 6809 アセンブラ F-BASIC N88-BASIC FORTRAN 77 COBOL LISP Turbo Pascal Prolog KABA C 言語 M シリーズ アセンブラ PL/I VB3.0~ PL/SQL T-SQL VB2005/2008 index 接続 データ取得 データ更新 権限 ADO.NET の基本的な構造.NET データプロバイダ Parameter

More information

untitled

untitled Oracle on Windows etc http://www.oracle.co.jp/campaign/mb_tech/ Windows Server System Center / OTN Japan http://www.oracle.com/technology/global/jp/tech/windows/.net + Oracle Database.NET Developer Center

More information

PowerPoint -O80_REP.PDF

PowerPoint -O80_REP.PDF Oracle8 Core Technology Seminar 1997109,31 Oracle8 OS: UNIX Oracle8 : Release8.0.3 Oracle8 Quick Start Package Lesson 5 -- Enhancements to Distributed Facilities Oracle8 -- - Oracle8 LOB Oracle8 -- - Updates

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

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

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

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

Slide 1

Slide 1 Oracle Direct Seminar VB6 から最新.NET へ ~DB アプリ移行方法を徹底解説 ~ 日本オラクル株式会社 以下の事項は 弊社の一般的な製品の方向性に関する概要を説明するものです また 情報提供を唯一の目的とするものであり いかなる契約にも組み込むことはできません 以下の事項は マテリアルやコード 機能を提供することをコミットメント

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

~~~~~~~~~~~~~~~~~~ wait Call CPU time 1, latch: library cache 7, latch: library cache lock 4, job scheduler co

~~~~~~~~~~~~~~~~~~ wait Call CPU time 1, latch: library cache 7, latch: library cache lock 4, job scheduler co 072 DB Magazine 2007 September ~~~~~~~~~~~~~~~~~~ wait Call CPU time 1,055 34.7 latch: library cache 7,278 750 103 24.7 latch: library cache lock 4,194 465 111 15.3 job scheduler coordinator slave wait

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

C3印刷用.PDF

C3印刷用.PDF [ C-3 ] Oracle8i On Windows Agenda Windows Oracle8i Oracle8i for Windows NT/2000 R8.1.7 Oracle HTTP Server Oracle intermedia Oracle Workflow Windows Oracle8i for Windows Oracle8i Enterprise Edition Oracle8i

More information

Oracle Application Server 10g Release 3(10.1.3)- アジャイル・エンタープライズ(俊敏な企業)のためのデータ・アクセス

Oracle Application Server 10g Release 3(10.1.3)- アジャイル・エンタープライズ(俊敏な企業)のためのデータ・アクセス Oracle Application Server 10g Release 3 10.1.3 2005 8 Oracle Application Server 10g Release 3 10.1.3... 3 Oracle Application Server 10g Release 3 10.1.3 3... 4... 4 RAC... 6 JDBC... 7 JMX... 8... 9 Oracle...

More information

10-C.._241_266_.Z

10-C.._241_266_.Z Windows 10 1 2 3 4 5 Visual Studio 2008LINQ MySchedule 242 Microsoft Visual C# 2008 10 Windows 243 1 LINQIEnumerableXML LINQ to Object q Form1.cs w RefreshListBox private void RefreshListBox() schedulelistbox.items.clear();

More information

Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for

Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for embedded systems that use microcontrollers (MCUs)

More information

ADO.NETのアーキテクチャ

ADO.NETのアーキテクチャ データベース ADO.NET のアーキテクチャ 従来のデータ処理は 主に接続をベースとした 2 層モデルに基づいて居た 最近のデータ処理では 多階層アーキテクチャが多用される様に成った為 プログラマは 非接続型アプローチへと切り替えて アプリケーションに より優れたスケーラビリティを提供して居る ADO.NET のコンポーネント ADO.NET には データへのアクセスとデータの操作に使用出来るコンポーネントが

More information

(OnePoint) ( URL Web Copyright 2005 Microsoft Corporation. All rights reserved. MicrosoftWindowsVisual Basic Visual Studio Microsoft Corporation

(OnePoint) ( URL Web Copyright 2005 Microsoft Corporation. All rights reserved. MicrosoftWindowsVisual Basic Visual Studio Microsoft Corporation Microsoft Microsoft Visual Basic.NET (OnePoint) ( URL Web Copyright 2005 Microsoft Corporation. All rights reserved. MicrosoftWindowsVisual Basic Visual Studio Microsoft Corporation Microsoft Microsoft

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

意外と簡単!?

意外と簡単!? !?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

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

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

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

Microsoft Word - J doc

Microsoft Word - J doc SQL*Plus for Windows 8.1.6 2000 5 : J01601-01 : : Oracle Windows Windows NT 4.0 Windows 2000 Windows 95 Windows 98 Windows NT Windows NT 4.0 Windows 2000 Oracle Oracle Oracle Corporation Oracle7 Oracle8i

More information

新・明解Java入門

新・明解Java入門 537,... 224,... 224,... 32, 35,... 188, 216, 312 -... 38 -... 38 --... 102 --... 103 -=... 111 -classpath... 379 '... 106, 474!... 57, 97!=... 56 "... 14, 476 %... 38 %=... 111 &... 240, 247 &&... 66,

More information

日本オラクル株式会社

日本オラクル株式会社 FISC 6 Oracle Database 10g ~ ~ : 2005 7 26 : 2005 7 31 : 1.0 2004 4 (* ) FISC ) (* ) FISC 6 (* FISC 6 ) FISC 6 Oracle g Database 10 (FISC) http://www.fisc.or.jp FISC http://www.fisc.or.jp/info/info/050307-1.htm

More information

FileMaker ODBC and JDBC Guide

FileMaker ODBC and JDBC Guide FileMaker 14 ODBC JDBC 2004-2015 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

領域サイズの見積方法

領域サイズの見積方法 White Paper 1998 3 1998 7 NULL 1998 9 2 8.03 Design & Migration Services Oracle Corporation Japan 1998 Printed in Japan Oracle and SQL*Loader are registered trademarks. Oracle7 Oracle Corporation Oracle

More information

MVP for VB が語る C# 入門

MVP for VB が語る C# 入門 MVP for VB が語る C# 入門 2008.08.09 初音玲 自己紹介 Z80 アセンブラ 6809 アセンブラ F-BASIC N88-BASIC FORTRAN 77 COBOL LISP Turbo Pascal Prolog KABA C 言語 M シリーズ アセンブラ PL/I VB3.0~ PL/SQL T-SQL VB2005/2008 index Microsoft Visual

More information

以下の事項は 弊社の一般的な製品の方向性に関する概要を説明するものです また 情報提供を唯一の目的とするものであり いかなる契約にも組み込むことはできません 以下の事項は マテリアルやコード 機能を提供することをコミットメント ( 確約 ) するものではないため 購買決定を行う際の判断材料になさらな

以下の事項は 弊社の一般的な製品の方向性に関する概要を説明するものです また 情報提供を唯一の目的とするものであり いかなる契約にも組み込むことはできません 以下の事項は マテリアルやコード 機能を提供することをコミットメント ( 確約 ) するものではないため 購買決定を行う際の判断材料になさらな Visual Studio を利用した Oracle Database +.NET アプリケーションの構築 日本オラクル株式会社 2010 年 11 月 以下の事項は 弊社の一般的な製品の方向性に関する概要を説明するものです また 情報提供を唯一の目的とするものであり いかなる契約にも組み込むことはできません 以下の事項は マテリアルやコード 機能を提供することをコミットメント

More information

Microsoft Word - DotNet_SmartClient_Final.doc

Microsoft Word - DotNet_SmartClient_Final.doc 意外と簡単!?.NET で Oracle -.NET 開発 with ODP.NET - Creation Date: Aug. 3, 2004 Last Update: Oct 21, 2004 Version: 1.1 はじめに 意外と簡単!?.NET で Oracle シリーズは Microsoft Visual Studio.NET を使用して Oracle10g 対応アプリケーションをこれから開発されるかた向けに作成しております

More information

<Documents Title Here>

<Documents Title Here> Oracle Application Server 10g Release 2 (10.1.2) for Microsoft Windows Business Intelligence Standalone Oracle Application Server 10g Release 2 (10.1.2) for Microsoft Windows Business Intelligence Standalone

More information

D1印刷用.PDF

D1印刷用.PDF [ D-1 ] Windows Oracle8i for Windows Oracle8i for Windows / / Visual Basic - Oracle8i SQL Oracle Oracle8i for Windows Oracle8i Enterprise Edition Oracle8i Personal Edition Oracle8i Workgroup Server Oracle8i

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

,,,,., C Java,,.,,.,., ,,.,, i

,,,,., C Java,,.,,.,., ,,.,, i 24 Development of the programming s learning tool for children be derived from maze 1130353 2013 3 1 ,,,,., C Java,,.,,.,., 1 6 1 2.,,.,, i Abstract Development of the programming s learning tool for children

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

052-XML04/fiÁ1-part3-’ÓŠ¹

052-XML04/fiÁ1-part3-’ÓŠ¹ & XML Data Store Part 3 Feature*1 AKIMOTO, Shougo i i i i i i inter 52 XML Magazine 04 i i i i i i i i P a r t 3 i i i i i XML Magazine 04 53 & XML Data Store Feature*1 i i inter i inter i inter inter

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

untitled

untitled Visual Basic.NET 1 ... P.3 Visual Studio.NET... P.4 2-1 Visual Studio.NET... P.4 2-2... P.5 2-3... P.6 2-4 VS.NET(VB.NET)... P.9 2-5.NET... P.9 2-6 MSDN... P.11 Visual Basic.NET... P.12 3-1 Visual Basic.NET...

More information

10/ / /30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20 6. http, CGI Perl 11/27 7. ( ) Perl 12/ 4 8. Windows Winsock 12/11 9. JAV

10/ / /30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20 6. http, CGI Perl 11/27 7. ( ) Perl 12/ 4 8. Windows Winsock 12/11 9. JAV tutimura@mist.i.u-tokyo.ac.jp kaneko@ipl.t.u-tokyo.ac.jp http://www.misojiro.t.u-tokyo.ac.jp/ tutimura/sem3/ 2002 12 11 p.1/33 10/16 1. 10/23 2. 10/30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20

More information

untitled

untitled Oracle Direct Seminar Oracle Database.NET NET Visual Studio Oracle Copyright 2010, Oracle. All rights reserved. 2 .NET Oracle.NET + Oracle Visual Studio + Oracle.NET + Oracle Copyright

More information

PowerRDBconnector説明書(SQLServer編)

PowerRDBconnector説明書(SQLServer編) COBOL COBOL SQL COBOL COBOL COBOL OPEN REWRITE REWRITE SQL Server SQL Server PowerRDBconnector or NetCOBOL C C COBOL C C NetCOBOL [] NetCOBOL [] NetCOBOL SQL Server SQL Server NetCOBOL []

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

KeySQL R5.1 Release Note

KeySQL R5.1 Release Note KeySQL for Microsoft Windows 5.1 2005 10 : B19176-02 Copyright 2005, Oracle Corporation All Right Reserved Oracle Oracle Oracle Corporation KeySQL for Microsoft Windows 5.1 : B19176-02 Copyright 2005,

More information

Z7000操作編_本文.indb

Z7000操作編_本文.indb 2 8 17 37Z700042Z7000 46Z7000 28 42 52 61 72 87 2 3 12 13 6 7 3 4 11 21 34 61 8 17 4 11 4 53 12 12 10 75 18 12 42 42 13 30 42 42 42 42 10 62 66 44 55 14 25 9 62 65 23 72 23 19 24 42 8 26 8 9 9 4 11 18

More information

Introduction Purpose This training course describes the configuration and session features of the High-performance Embedded Workshop (HEW), a key tool

Introduction Purpose This training course describes the configuration and session features of the High-performance Embedded Workshop (HEW), a key tool Introduction Purpose This training course describes the configuration and session features of the High-performance Embedded Workshop (HEW), a key tool for developing software for embedded systems that

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

KeySQL for Microsoft Windows 6.0 : B28350-01 Copyright 2006, Oracle Corporation. All rights reserved. Printed in Japan. * Oracle Corporation Oracle Co

KeySQL for Microsoft Windows 6.0 : B28350-01 Copyright 2006, Oracle Corporation. All rights reserved. Printed in Japan. * Oracle Corporation Oracle Co KeySQL for Microsoft Windows 6.0 2006 3 : B28350-01 Copyright 2006, Oracle Corporation All Right Reserved Oracle Oracle Oracle Corporation KeySQL for Microsoft Windows 6.0 : B28350-01 Copyright 2006, Oracle

More information

Oracle Direct Seminar <Insert Picture Here>.NET で使いこなそう Oracle Database 日本オラクル株式会社

Oracle Direct Seminar <Insert Picture Here>.NET で使いこなそう Oracle Database 日本オラクル株式会社 Oracle Direct Seminar .NET で使いこなそう Oracle Database 日本オラクル株式会社 以下の事項は 弊社の一般的な製品の方向性に関する概要を説明するものです また 情報提供を唯一の目的とするものであり いかなる契約にも組み込むことはできません 以下の事項は マテリアルやコード 機能を提供することをコミットメント ( 確約

More information

Oracle9i: Microsoft .NETによる開発

Oracle9i: Microsoft .NETによる開発 Oracle9i: Microsoft.NET による 開 発 オラクル テクニカル ホワイト ペーパー 2003 年 4 月 Oracle9i: Microsoft.NET による 開 発 概 要... 3 はじめに... 4 Windows Server 2003 のサポート... 4 32 ビットのサポート... 4 64 ビットのサポート... 4.NET データ アクセス... 4 Oracle

More information

HARK Designer Documentation 0.5.0 HARK support team 2013 08 13 Contents 1 3 2 5 2.1.......................................... 5 2.2.............................................. 5 2.3 1: HARK Designer.................................

More information

Oracle Corporation

Oracle Corporation < 写真欄 >.NET でも Oracle Database を選択する理由 日本オラクル株式会社 以下の事項は 弊社の一般的な製品の方向性に関する概要を説明するものです また 情報提供を唯一の目的とするものであり いかなる契約にも組み込むことはできません 以下の事項は マテリアルやコード 機能を提供することをコミットメント ( 確約 ) するものではないため 購買決定を行う際の判断材料になさらないで下さい

More information

DocuWide 2051/2051MF 補足説明書

DocuWide 2051/2051MF 補足説明書 ëêèõ . 2 3 4 5 6 7 8 9 0 2 3 4 [PLOTTER CONFIGURATION] [DocuWide 2050/205 Version 2.2.0] [SERIAL] BAUD_RATE =9600 DATA_BIT =7 STOP_BIT = PARITY =EVEN HANDSHAKE =XON/XOFF EOP_TIMEOUT_VALUE =0 OUTPUT RESPONSE

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

IT 2

IT 2 Knowledge-Works, Inc. Tokyo UML Caché IT 2 UML Caché Caché vocabulary UML Unified Modeling Language) UML UML / UML but UML UML UML DBMS / 2003 InternSystems DevCon Transformation Transformation on

More information

J2EEとMicrosoft.NETの比較

J2EEとMicrosoft.NETの比較 2002 4 ... 3... 4... 4... 4... 5... 5... 8... 8... 8... 9 Web... 10... 11... 11... 11... 11... 12... 13... 13... 13... 14... 14... 15 Web... 15 Oracle... 16 Oracle9i Application Server... 16 Oracle9i Developer

More information

はじめに

はじめに IT 1 NPO (IPEC) 55.7 29.5 Web TOEIC Nice to meet you. How are you doing? 1 type (2002 5 )66 15 1 IT Java (IZUMA, Tsuyuki) James Robinson James James James Oh, YOU are Tsuyuki! Finally, huh? What's going

More information

10 2000 11 11 48 ( ) ( ) ( ) ( ) ( ) ( ) ( ) ( ) ( ) CU-SeeMe NetMeeting Phoenix mini SeeMe Integrated Services Digital Network 64kbps 16kbps 128kbps 384kbps

More information

Microsoft Word - dotnet_aspdotnet.doc

Microsoft Word - dotnet_aspdotnet.doc 意外と簡単!?.NET で Oracle -.NET 開発 with ODP.NET - ASP.NET 編 はじめに... 2 ASP.NETでOracle Data Provider For.NETの使用... 4 サンプルアプリケーションのインストール... 6 ASP.NETからのLOBの扱い... 11 ASP.NETアプリケーションのセキュリティについて... 17 ODP.NETでのエラーハンドリング...

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

橡ExCtrlPDF.PDF

橡ExCtrlPDF.PDF THE Database FOR Network Computing Oracle Oracle Oracle Oracle Oracle Oracle (Oracle Object for OLE Oracle Developer) SQL Oracle8 Enterprise Edition R8.0.5 for Windows NT Oracle8 Enterprise Edition R8.0.5

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

2 3 12 13 6 7

2 3 12 13 6 7 2 8 17 42ZH700046ZH700052ZH7000 28 43 54 63 74 89 2 3 12 13 6 7 3 4 11 21 34 63 65 8 17 4 11 4 55 12 12 10 77 56 12 43 43 13 30 43 43 43 43 10 45 14 25 9 23 74 23 19 24 43 8 26 8 9 9 4 8 30 42 82 18 43

More information

データベース認識Webサービス

データベース認識Webサービス Olivier Le Diouris, Oracle Corporation PL/SQL PL/SQL SOAP SOAP SOAP Web Java Java SOAP Perl Perl PL/SQL SOAP PL/SQL 1. URL 2. SOAP 1. 2. 3. 1 JSR 109 J2EE JSR 109 J2EE J2EE PL/SQL Java 2 3 JPublisher PL/SQL

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

2

2 8 24 32C800037C800042C8000 32 40 45 54 2 3 24 40 10 11 54 4 7 54 30 26 7 9 8 5 6 7 9 8 18 7 7 7 40 10 13 12 24 22 22 8 55 8 8 8 8 1 2 3 18 11 54 54 19 24 30 69 31 40 57 23 23 22 23 22 57 8 9 30 12 12 56

More information

2

2 8 23 26A800032A8000 31 37 42 51 2 3 23 37 10 11 51 4 26 7 28 7 8 7 9 8 5 6 7 9 8 17 7 7 7 37 10 13 12 23 21 21 8 53 8 8 8 8 1 2 3 17 11 51 51 18 23 29 69 30 39 22 22 22 22 21 56 8 9 12 53 12 56 43 35 27

More information

2

2 8 22 19A800022A8000 30 37 42 49 2 3 22 37 10 11 49 4 24 27 7 49 7 8 7 9 8 5 6 7 9 8 16 7 7 7 37 10 11 20 22 20 20 8 51 8 8 9 17 1 2 3 16 11 49 49 17 22 28 48 29 33 21 21 21 21 20 8 10 9 28 9 53 37 36 25

More information

Oracle Developer Release 6i

Oracle Developer Release 6i Oracle Developer Release 6i 1.1 ...1...5...6 ORACLE DEVELOPER... 6...6...6 Oracle Developer...6...9...9... 10... 10...10...11...12... 13... 13... 13...14... 14 ORACLE DEVELOPER R6I... 14 R6i...15...15...15

More information

Microsoft Word - 9ir2_windev.doc

Microsoft Word - 9ir2_windev.doc Oracle9i Database Release 2 for Windows: 開発と配置 オラクル テクニカル ホワイト ペーパー 2003 年 4 月 Oracle9i Database Release 2 for Windows: 開発と配置 概要... 3 Windows 環境での Oracle... 3 アプリケーションの開発... 4 Oracle Objects for OLE...

More information

Microsoft PowerPoint _DotnetPerf.ppt [互換モード]

Microsoft PowerPoint _DotnetPerf.ppt [互換モード] Oracle on Windows 参考資料 コラム ( オラクル都市伝説 ) イベント セミナー情報 etc http://www.oracle.co.jp/campaign/mb_tech/ Windows Server System Center / OTN Japan http://www.oracle.com/technology/global/jp/tech/windows/.net +

More information

Oracle on Windows

Oracle on Windows Oracle Direct Seminar Visual Studio 2010 で Oracle を使い倒す 日本オラクル株式会社 以下の事項は 弊社の一般的な製品の方向性に関する概要を説明するものです また 情報提供を唯一の目的とするものであり いかなる契約にも組み込むことはできません 以下の事項は マテリアルやコード 機能を提供することをコミットメント

More information

untitled

untitled cibm() Information Management DB2 UDB V8.2 SQL cibm() Information Management 2 DB2 UDB V8.2 SQL cibm() Information Management 3 DB2 UDB V8.2 SQL cibm() Information Management 4 cibm() Information Management

More information

<Documents Title Here>

<Documents Title Here> Oracle9i Database R9.2.0 for Windows Creation Date: Mar 06, 2003 Last Update: Mar 24, 2003 CD 1 A99346-01 Oracle9i Database Release 2 (9.2.0.1.0) for Microsoft Windows NT/2000/XP CD 1 of 3 2 A99347-01

More information

2

2 8 23 32A950S 30 38 43 52 2 3 23 40 10 33 33 11 52 4 52 7 28 26 7 8 8 18 5 6 7 9 8 17 7 7 7 38 10 12 9 23 22 22 8 53 8 8 8 8 1 2 3 17 11 52 52 19 23 29 71 29 41 55 22 22 22 22 22 55 8 18 31 9 9 54 71 44

More information

評論・社会科学 84号(よこ)(P)/3.金子

評論・社会科学 84号(よこ)(P)/3.金子 1 1 1 23 2 3 3 4 3 5 CP 1 CP 3 1 1 6 2 CP OS Windows Mac Mac Windows SafariWindows Internet Explorer 3 1 1 CP 2 2. 1 1CP MacProMacOS 10.4.7. 9177 J/A 20 2 Epson GT X 900 Canon ip 4300 Fujifilm FinePix

More information

fx-9860G Manager PLUS_J

fx-9860G Manager PLUS_J fx-9860g J fx-9860g Manager PLUS http://edu.casio.jp k 1 k III 2 3 1. 2. 4 3. 4. 5 1. 2. 3. 4. 5. 1. 6 7 k 8 k 9 k 10 k 11 k k k 12 k k k 1 2 3 4 5 6 1 2 3 4 5 6 13 k 1 2 3 1 2 3 1 2 3 1 2 3 14 k a j.+-(),m1

More information

honbun.indd

honbun.indd Development of Web Reservation System for Sirakaba Lodge in Aichi University (1) Object-Oriented Modeling and Implementation of Database Application Yong Jiang, Satoru Horii and Yasuhiro Taga Faculty of

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

B2-Servlet-0112.PDF

B2-Servlet-0112.PDF B-2 Servlet/JSP Agenda J2EE Oracle8i J2EE Java Servlet JavaServer Pages PDA ( J2EE Java2 Enterprise Edition API API J2SE JSP Servlets RMI/IIOP EJB JNDI JTA JDBC JMS JavaMail JAF Java2 Standard Edition

More information