Web JDBC JDBC Java JDBC DataBase Web CHtmlView...

Size: px
Start display at page:

Download "Web JDBC JDBC Java JDBC DataBase Web CHtmlView..."

Transcription

1 Web-DB 13

2 Web JDBC JDBC Java JDBC DataBase Web CHtmlView , DataBase Web Web DataBase Web URL

3 (DSL FTTH CATV) 719 ( ) Web Amazon DataBase Web Web Web DataBase Web 1 URL[1] 3

4 2 Web Web Web DataBase 2 DataBase HTML Java Servlet DataBase JDBC(Java DataBase Connectivity) Java Servlet DataBase Web 2.1 JDBC JDBC JDBC Java Java JDBC 2 API(JDBC API JDBC API) JDBC DataBase DataBase JDBC API DataBase DataBase JDBC JDBC API DataBase JDBC 4 (JDBC-ODBC API JDBC Java ) JDBC-ODBC ODBC ODBC API API JDBC Java Java Java PostgreSQL JDBC Java ( ) Java ODBC DataBase JDBC 2 URL [2] 4

5 native ODBC Java Java JDBC OS Windows 2000 Server Java Java 2 SDK Standard Edition Version 1.4.0_01 JDBC JDBC3 [ ] [ ] [ ] [ ] [PATH] java C: j2sdk1.4.0_01 bin (;) [ ] JDBC [CLASSPATH] postgre.jar [CLASSPATH] DataBase JDBC API JDBC import import java.sql.*; JDBC DataBase JDBC PostgreSQL JDBC PostgreSQL JDBC Class.forName 1:try { 2: Class.forName( org.postgresql.driver ); 3: // Connect to database 4:} catch (ClassNotFoundException ex) { 5: // 6:} 5

6 JDBC DataBase JDBC API DriverManager.getConnection Connection conn = DriverManager.getConnection(url, usr, pwd); usr pwd String url String WWW URL DataBase jdbc:postgresql:databasename jdbc:postgresql://hostname/databasename jdbc:postgresql://hostname:port/databasename 3 jdbc:postgresql://localhost:5432/test Java Web HTML Web Tomcat root DataBase DataBase root 6

7 customer C_ID ID C_FNAME 20 C_LNAME 20 C_ZIP C_ADDR C_ADDR C_PHONE C_ 50 item I_ID ID I_TITLE 60 I_M_ID ID I_SUBJECT 10 I_PRICE I_IMAGE 40 URL maker M_ID ID M_NAME 50 M_URL 50 URL orders O_ID ID O_DATE O_C_ID ID 7

8 order_item OI_ID ID OI_O_ID ID OI_I_ID ID OI_NUM DataBase

9 2.1 customer maker C_ID M_ID C_FNAME M_NAME C_LNAME M_URL C_ZIP C_ADDR1 orders C_ADDR2 O_ID C_PHONE O_DATE C_ O_C_ID item I_ID I_TITLE I_M_ID I_SUBJECT I_PRICE I_IMAGE order_item OI_ID OI_O_ID OI_I_ID OI_NUM 9

10 162,080 (4, ,378) bytes 162,561 (4, ,813) bytes 2.3 Web DB DB 2.1 Web 10,000 bytes 100,000 bytes 5,244 bytes 22,747 bytes 62,440 (10, ,440) bytes 464,890 (10, ,890) bytes 152,440 (100, ,440) bytes 545,890 (100, ,890) bytes 4,781 bytes 9,126 bytes 27,401 (1, ,214) bytes 114,375 (1, ,288) bytes 684,480 (4, ,808) bytes 4,782 bytes 86,977 bytes 27,454 (1, ,333) bytes 114,331 (1, ,215) bytes (4, ,444) bytes 4,782 bytes 865,477 bytes (1, ,189) bytes 114,795 (1, ,717) bytes 162,650 (4, ,816) bytes 686,128 (4, ,324) bytes DataBase Web DataBase Web 10

11 2.4 Web DataBase Web SQL SELECT Web SQL DataBase Web SELECT FROM maker 11

12 DataBase Web SELECT FROM customer 12

13 DataBase Web SELECT c_fname, c_lname FROM customer WHERE c_id =? ID? SELECT i_title, i_subject, oi_num, i_price, i_image FROM item, orders, order_item WHERE orders.o_id = order_item.oi_o_id AND order_item.oi_i_id = item.i_id AND orders.o_c_id =? ID? ID ID ID ID URL 13

14 DataBase Web SELECT m_name, m_url, i_title, i_price, i_image FROM item, maker WHERE maker.m_id = item.i_m_id AND i_subject = 'CPU' LIMIT 30 CPU ID ID URL URL 30 14

15 3 Web Java Servlet Web JDBC DataBase SQL 3.1 Web DataBase Visual Studio 6.0 Enterprise 3.1 CHtmlView 3 CHtmlView MFC(Microsoft Foundation Class) / Web Browser Web Browser World Wide Web Web Browser Uniform Resource Locator(URL) MFC CHtmlView MFC (SDI 4 MDI 5 ) CView CView CHtmlView Web Browser 15

16 Web Web [MFC ] CHtmlView Web Browser ActiveX ( CHtmlView) Internet Explorer 4.0 Windows NT version 4.0 CHtmlView Web HTML CHtmlView Internet Explorer Web Browser MFC MFC AppWizard(exe) ( WebBrowse ) AppWizard SDI Internet Explorer ReBar CHtmlView URL IDC_EADDRESS MainFrm.h void OnNewAddress() MainFrm.cpp 1:void CMainFrame::OnNewAddress() 2:{ 3: CString saddress; 16

17 4: m_wnddlgbar.getdlgitem(idc_eaddress)->getwindowtext(saddress); 5: ((CWebBrowseView*)GetActiveView())->Navigate(sAddress); 6:} 4 GetWindowText saddress 5 GetActiveView CWebBrowseView Navigate URL MainFrm.cpp WebBrowseDoc.h WebBrowseView.h IDC_STATICTIME1 MainFrm.h double start_time void GetAddress() WebBrowseView.h void OnBeforeNavigate2(LPCTSTR lpszurl, DWORD nflags, LPCTSTR lpsztargetframename, CByteArray& beposteddata, LPCTSTR lpszheaders, BOOL* pbcancel) MFC WebBrowseView.cpp 1:void CWebBrowseView::OnBeforeNavigate2(LPCTSTR lpszurl, DWORD nflags, LPCTSTR lpsztargetframename, CByteArray& beposteddata, LPCTSTR lpszheaders, BOOL* pbcancel) 2:{ 3: ((CMainFrame*)GetParentFrame())->GetAddress(); 4:} 17

18 3 OnBeforeNavigate2 GetAddress MainFrm.cpp 1:void CMainFrame::GetAddress() 2:{ 3: start_time = GetTickCount(); 4: CString tmp1; 5: tmp1.format( "%.0f", start_time); 6: m_wnddlgbar.getdlgitem(idc_statictime1)->setwindowtext((lpctstr)tmp1); 7:} 3 GetTickCount start_time 6 SetWindowText start_time 3.2, IDC_STATICTIME2 IDC_STATICTIME3 MainFrm.h double stop_time void SetAddress() WebBrowseView.h void OnDocumentComplete(LPCTSTR lpszurl) MFC WebBrowseView.cpp 1:void CWebBrowseView::OnDocumentComplete(LPCTSTR lpszurl) 2:{ 3: ((CMainFrame*)GetParentFrame())->SetAddress(lpszUrl); 4:} 18

19 3 OnDocumentComplete Web URL MainFrm.cpp 1:void CMainFrame::SetAddress(LPCTSTR lpszurl) 2:{ 3: m_wnddlgbar.getdlgitem(idc_eaddress)->setwindowtext(lpszurl); 4: 5: stop_time = GetTickCount(); 6: CString tmp2; 7: tmp2.format( "%.0f", stop_time); 8: m_wnddlgbar.getdlgitem(idc_statictime2)->setwindowtext((lpctstr)tmp2); 9: 10: double dif_time; 11: dif_time = stop_time - start_time; 12: CString tmp3; 13: tmp3.format( "%.0f", dif_time); 14: m_wnddlgbar.getdlgitem(idc_statictime3)->setwindowtext((lpctstr)tmp3); 15:} 5 GetTickCount stop_time 8 SetWindowText stop_time 11 stop_time - start_time dif_time 14 SetWindowText dif_time WebBrowseView.cpp MainFrm.h CHtmlView CHtmlView::Navigate2 URL 19

20 CHtmlView::OnBeforeNavigate2 Web CHtmlView::OnDocumentComplete READYSTATE_COMPLETE URL Web 20

21 Web Web Web Web C: Documents and Settings Local Settings Temporary Internet Files 21

22 4 4.1 Web CPU Pentium3 733MHz Memory 256M LAN Intel 8255x-based PCI Ethernet Adapter (10/100) OS Windows2000 Server DBMS PostgreSQL native Compiler Java 2 SDK Standard Edition Version 1.4.0_01 Servlet Container Tomcat CPU Celeron 1.3GHz Memory 512M LAN Sis 900-Based PCI Fast Ethernet Adapter OS Windows XP Web

23 Web PC 2 Web Web Web Web Web 23

24 4.1 DataBase Web DataBase Web Web 4.1 Web 4.1 Web Web Web Web 1 Web HTML <IMG SRC= URL > URL Web 24

25 DataBase Web PC 4.2 PC PC PC PC 25

26 4.1.3 DataBase Web HTML Java PC Web ms HTML Java Web ms HTML Java HTML Web Web Java Java Servlet Web HTML Java Web Web Web 26

27 4.2 DataBase Web DataBase Web DataBase Web Web DataBase 3 Web DataBase Web DataBase Web ms DB PC Web ms DB PC Web DataBase 1 Web DataBase Web

28 4.5 Web ms DB PC DataBase Web Web Web Web SQL PC Web ms DB Web ms DB Web Web customer item orders order_item 4 Web item maker 2 28

29 DataBase customer item orders order_item item maker Web Web DataBase DataBase JOIN SQL Web SQL SELECT i_title, i_subject, oi_num, i_price, i_image FROM (order_item INNER JOIN orders ON order_item.oi_o_id = orders.o_id) INNER JOIN item ON order_item.oi_i_id = item.i_id WHERE orders.o_c_id =? order_item orders item order_item.oi_o_id = orders.o_id order_item.oi_i_id = item.i_id RDBMS JOIN Web ms PC JOIN

30 5 Web Web Web Web DataBase Web DataBase Web DataBase Web SQL SELECT SQL INSERT DELETE UPDATE SELECT DataBase DataBase DataBase LOB 30

31 URL [1] [2] 3 PC UNIX PostgreSQL 2001 [3] MSDN Online Japan 31

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

CSV ToDo ToDo

CSV ToDo ToDo intra-mart ver4.0 2003/05/02 1. ( 10 imode ConceptBase imode CSV ToDo ToDo 2. intra-mart ver4.0 Java Sun JDK1.3.1 WebServerConnector Java DDL intra-mart intra-mart Java OS (1 Web Web intra-mart 2 Sun ONE

More information

GPS携帯端末を用いた近隣バス停位置と

GPS携帯端末を用いた近隣バス停位置と GPS S003036 2004 2 13 ... 3... 4 2.1...4 2.2...5 2.3...6... 8 3.1 DBMS...8 3.1.1 DBMS...8 3.1.2...9 3.1.3...10 3.2 Web...10 3.2.1 Web...10 3.2.2 JDBC... 11 3.3...11 3.3.1 SQL... 11 3.3.2 Java...12 3.4...12

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

SmartLMSユーザーズガイド<講師編>

SmartLMSユーザーズガイド<講師編> SmartLearning Management System SmartLMS (1) (2) (3) (4) (3) (5) Microsoft MS PowerPoint DirectX Windows Windows NT Windows Media Microsoft Corporation Intel Pentium Intel Corporation NEC 2003-2004 NEC

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

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

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

intra-mart Web for SellSide ver /03/31 Oracle MS-SQL Server IBM DB2 MS-SQL Server IBM DB2 Client Side JavaScript Server Side JavaScript URL -

intra-mart Web for SellSide ver /03/31 Oracle MS-SQL Server IBM DB2 MS-SQL Server IBM DB2 Client Side JavaScript Server Side JavaScript URL - intra-mart Web for SellSide ver3.1.0 2002/03/31 Oracle MS-SQL Server IBM DB2 MS-SQL Server IBM DB2 Client Side JavaScript Server Side JavaScript URL - intra-mart intra-mart intra-mart - 1 - intra-mart

More information

intra-mart ver /10/31 1. / intra-mart 3.2 AND intra-mart (JavaMail ) ( )

intra-mart ver /10/31 1. / intra-mart 3.2 AND intra-mart (JavaMail ) ( ) intra-mart ver3.2 2002/10/31 1. / intra-mart 3.2 AND intra-mart (JavaMail ) (2002 3 ) 2. intra-mart ver3.2 intra-mart ver3.2 BMv3.2 intra-mart ver3.2 Java Sun JRE1.3.1(J2EE JDK1.3.1) Web Web intra-mart

More information

FileMaker Server Getting Started Guide

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

More information

LDAP Manager SupportList

LDAP Manager SupportList LDAP Manager 2017/8/1 現在 動作環境 OS メタ LDAP PostgreSQL ELM Interface for Java for Windows for Linux システム プロダクト LDAP Manager 本体のバージョン Windows Server 2003 Standard Edition (32bit/64bit) Windows Server 2003

More information

オンラインによる 「電子申告・納税等開始(変更等)届出書」 提出方法

オンラインによる 「電子申告・納税等開始(変更等)届出書」 提出方法 18 2 1 OS 2 OS WWW OS Windows 2000 Professional Windows XP (Home Edition) Windows XP (Professional Edition) WWW Microsoft Internet Explorer 6.0 Windows 98 Windows Me WindowsNT OS e-tax 3 Internet Explorer

More information

IT 1. IT 2. 2.1. IT 2.2. SKYSEA Client View Government License Light Edition Sky 1500 28 2 15 12 3. 4. 28 3 25 1 5. 5.1. (1) 28 4 1 (2) (3) (4) ISO27001 P (5) ISO/IEC20000 (6) USB 1 (7) OS (8) 1 CPU 4

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

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

FileMaker Server Getting Started Guide

FileMaker Server Getting Started Guide FileMaker Server 13 2007-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

PowerPoint Presentation

PowerPoint Presentation 上級プログラミング 2( 第 5 回 ) 工学部情報工学科 木村昌臣 今日のテーマ データベース入門 データベースシステムの用意の仕方 データベースを作ってみる データベースを使ってみる データベースプログラミング JDBCを使った検索プログラム JDBCを使った更新プログラム データベース入門 今回の説明は Windows 環境を前提としているため Linux など他のプラットフォーム上で作業を行う場合は

More information

Windows Oracle -Web - Copyright Oracle Corporation Japan, All rights reserved.

Windows Oracle -Web - Copyright Oracle Corporation Japan, All rights reserved. Windows Oracle -Web - Copyright Oracle Corporation Japan, 2004. All rights reserved. Agenda Oracle Windows Windows Oracle 1 / Active Directory/Enterprise User Security 1-1 Windows 1-2 Kerberos 1-3 Enterprise

More information

: : : TSTank 2

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

More information

1 2 1.1................................ 2 1.2................................. 2 1.2.1............................... 3 1.2.2.........................

1 2 1.1................................ 2 1.2................................. 2 1.2.1............................... 3 1.2.2......................... 18 PHP Ajax 1 2 1.1................................ 2 1.2................................. 2 1.2.1............................... 3 1.2.2................................... 3 2 7 2.1.......................

More information

book

book Bibliotheca21 Personal 3020-7-245-30 P-26D3-A114 Bibliotheca21 Personal 01-30 OS Windows 2000 Windows Server(R) 2003 Windows XP Windows Server(R) 2008 Windows Vista(R) Windows 7 Adobe Adobe Systems Incorporated

More information

FileMaker Server 8 Advanced Web Publishing Installation Guide

FileMaker Server 8 Advanced Web Publishing Installation Guide FileMaker Server 8 Advanced! 13 2004-2005 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker FileMaker, Inc. ScriptMaker FileMaker, Inc.

More information

HULFT-DataMagic Ver2.2.0 製品対応OS

HULFT-DataMagic Ver2.2.0 製品対応OS Ver2.2.0 製品対応 OS 2014 年 2 月 5 日以降適用 版最新 Version 2.2.0 for コード変換 オプション for DB 接続 オプション (Oracle) for DB 接続 オプション (DB2) for DB 接続 オプション (PostgreSQL) for DB 接続 オプション (SQL Server) for Excel オプション for テンプレート

More information

PrintWalker/LXE インストールガイド

PrintWalker/LXE インストールガイド PrintWalker/LXE V16L20 1 2 PrintWalker/LXE V16L20 for Red Hat Enterprise Linux (for x86) Linux Linus Torvalds Red Hat RPM Red Red Hat, Inc. Common UNIX Printing System CUPS Apple Inc. UNIX Microsoft Windows

More information

<4D F736F F D20566F F6E658C6791D FE382C582CC4A D834F E F8F4390B394C52E646F63>

<4D F736F F D20566F F6E658C6791D FE382C582CC4A D834F E F8F4390B394C52E646F63> [email protected] (Tel: 087-864-2244(FAX )) Vodafone( J-Phone) (J-SA51 090-2829-9999) JavaTM ( Vappli ) SUN ( SUN ) Java2SE(J2SDK1.3.1 Java Standard Edition) Java2MEforCLDC(WTK1.04 Wireless Tool

More information

FirePass Edge Client TM Edge Client LAN Edge Client 7.0 Edge Client Edge Client Edge Client Edge Client Edge Client Edge Client LAN Edge Client VPN Wi

FirePass Edge Client TM Edge Client LAN Edge Client 7.0 Edge Client Edge Client Edge Client Edge Client Edge Client Edge Client LAN Edge Client VPN Wi Security FirePass SSL VPN FirePass SSL VPN Virtual Edition VE) 1 Web E 11 12 icontrol SSL VPN API 12 FirePass FirePass Edge Client TM Edge Client LAN Edge Client 7.0 Edge Client Edge Client Edge Client

More information

ohp.mgp

ohp.mgp 2019/06/11 A/B -- HTML/WWW(World Wide Web -- (TA:, [ 1 ] !!? Web Page http://edu-gw2.math.cst.nihon-u.ac.jp/~kurino VNC Server Address : 10.9.209.159 Password : vnc-2019 (2019/06/04 : : * * / / : (cf.

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

MFC-100 Version E ... 1 2 3 4 1 2 3 1 1 1 2 2 3 3 1 1 2 2 3 3 1 2 3 1 2 3 1 2 3 4 1 1 1 2 3 2 3 1 1 3 2 1 1 2 1 1 2 3 4 1 2 3 4 5 6 1 2 6 3 4 5 1 2 3 1 2 4 1 2 3 1 2 3 1 2 5 3 6 7

More information

SAP Solution in Detail SAP Business One SAP Business One 1 SAP Business One 5 SAP Business One 5 1 5 5 5 6 6 SAP Business One 6 / 6 / 6 / 7 / 7 / 7 / 7 SAP Business One 8 8 9 9 CRM 9 CRM 10 10 SAP Business

More information

1997 1... 1... 2... 2... 2... 3... 6... 9... 9... 24... 39... 54... 69 4 1995 1996 A B C D 1 1 2 1 2 3 3 1 1 (1) (2) (3) 32 2 (1) (2) (3) 3 3 4 1 11 12 13 21 22 / / 23 5 4 4 1 9 1997 2 1 1 1 2 1 1 3 2

More information

konicaminolta.co.jp PageScope Net Care

konicaminolta.co.jp PageScope Net Care konicaminolta.co.jp PageScope Net Care KONICA MINOLTA PageScope Net Care KONICA MINOLTA PageScope Net Care Web KONICA MINOLTA PageScope Net Care SNMP KONICA MINOLTA Printer-MIB KONICA MINOLTA PageScope

More information

Web 1 p.2 1 Servlet Servlet Web Web Web Apache Web Servlet JSP Web Apache Tomcat Jetty Apache Tomcat, Jetty Java JDK, Eclipse

Web 1 p.2 1 Servlet Servlet Web Web Web Apache Web Servlet JSP Web Apache Tomcat Jetty Apache Tomcat, Jetty Java JDK, Eclipse Web 1 p.1 1 Servlet 1.1 Web Web WWW HTML CGI Common Gateway Interface Web HTML Web Web CGI CGI CGI Perl, PHP C Java Applet JavaScript Web CGI HTML 1.2 Servlet Java Servlet Servlet CGI Web CGI 1 Java Java

More information

Andor

Andor Andor 1FX 2JX/SXFX 3 1.FX DesignFlow 2.FX 3. FX DesignFlow FX 4. 5.FX CADSUPER FX CPU Intel Pentium 2.0GHz 1GB 2GB 3D 2GB 200MB CD-ROM 12801024 True Color Windows Windows OS WindowsXPWindows VistaWindowsWindows

More information

Web Microsoft 2008 R2 Database Database!! Database 04 08

Web   Microsoft 2008 R2 Database Database!! Database 04 08 Database Database Web http://www.microsoft.com/japan/sqlserver/2008/r2/solution/comparison/default.mspx Microsoft 2008 R2 Database Database!! 03 2009 6 1 Database 04 08 vs. Database 12 2008 R2 5 14! 5!

More information

付加情報をもったファイル共有システム

付加情報をもったファイル共有システム 1 2 1 6 1.1....................................... 6 1.2...................................... 6 1.3..................................... 6 1.4................................... 7 2 8 2.1 Annphony....................................

More information

I

I SR-SaaS I. - 1 - 1. 1-1) URL 1-2) ID SAAS - 2 - 1-3) - 3 - 2. 2-1) RemoteApp SR-SaaS 2-2) RemoteApp 2-3) : SAAS SSZK9999 ID SAAS OK - 4 - 2-4) RemoteApp 2-5) SR-SaaS - 5 - II. Windows - 6 - 1. Windows

More information

0315_F1_8iJDBC-SQLJ.PDF

0315_F1_8iJDBC-SQLJ.PDF Page 1 1 Page 2 2 JDBC JDBC JDBC JDBC JDBC SQLJ SQLJ SQLJ SQLJ SQLJ Page 3 3 JDBC Java JDBC RDBMS JDBC ODBC JDBC SQL JDBC SQL Java API Java JDBC Java API RDBMS Java Java JDBC JDBC ODBC Javasoft SQL99 JDBC

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

スライド 1

スライド 1 1 2466 565 40 / All Right Reserved,Copyrights 3 B to B B to C EC ERP EIAJ / / EDI All Right Reserved,Copyrights 4 All Right Reserved,Copyrights 5 1 All Right Reserved,Copyrights 6 EIAJ QR All Right Reserved,Copyrights

More information

2 2 2 6 9 9 10 14 18 19 21 22 22 Java 23 24 25 25 26 30 31 32 39 46 53 55 58 2 2.0 2.0R Ver.2.0R Java Java 2.0 2.0R 2.0R 2.0 Ver2.0 2.0R Ver2.0R 19 Sun Sun Microsystems Java Java Sun Microsystems, Inc.

More information

ルール&マナー集_社内版)_修正版.PDF

ルール&マナー集_社内版)_修正版.PDF WWW(World Wide Web) Web 12 WWW ID 2 1 2 3 4 WWW World Wide Web 5 5 A B 11 http://www.enc.or.jp/enc/code/rule/main.html 12 3 ... 2 1... 5 1.1... 5 1.2... 5 1.3... 6 1.4... 7 2... 9 2.1... 9 2.2 ID... 10

More information

CONTENTS 1 2 2 5 3 8 4 9 5 18 6 20 7 27 8 31 9 Web 33 10 36 11 37 12 39 2

CONTENTS 1 2 2 5 3 8 4 9 5 18 6 20 7 27 8 31 9 Web 33 10 36 11 37 12 39 2 USER'S MANUAL CONTENTS 1 2 2 5 3 8 4 9 5 18 6 20 7 27 8 31 9 Web 33 10 36 11 37 12 39 2 1 Internet Explorer 6.0 DHTML Flash Flash 2 Web Web FTP Web Windows Windows Windows Windows 100 OS CPU HDD DOS/V

More information

Installation and New Features Guide for FileMaker Pro 10 and FileMaker Pro 10 Advanced

Installation and New Features Guide for FileMaker Pro 10 and FileMaker Pro 10 Advanced FileMaker FileMaker Pro 10 and FileMaker Pro 10 Advanced 2007-2009 FileMaker, Inc. All rights reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker Bento Bento FileMaker,

More information

▼ RealSecure Desktop Protector 7

▼ RealSecure Desktop Protector 7 System Scanner / Assuria Auditor 4.x システム要件 2006 年 9 月 8 日 System Scanner / Assuria Auditor 4.x システム要件... 1 System Scanner Console... 1 System Scanner 4.2.5 Console... 1 System Scanner 4.2 Console... 2

More information

HTML Java Tips dp8t-asm/java/tips/ Apache Tomcat Java if else f

HTML Java Tips   dp8t-asm/java/tips/ Apache Tomcat Java if else f 1 Servlet 1.1 Web Web WWW HTML CGI Common Gateway InterfaceWeb HTML Web Web CGI CGI CGI Perl C Java Applet JavaScript Web CGI HTML 1.2 Servlet Java Servlet Servlet CGI Web CGI 1 Java / Java Java CGI Servlet

More information

FUJITSU Network Si-R Si-R Gシリーズ Webユーザーズガイド

FUJITSU Network Si-R Si-R Gシリーズ Webユーザーズガイド P3NK-4582-03Z0 Si-R G Web Web FUJITSU Network Si-R FUJITSU Network Si-R Si-R G Si-R brin Web V2 LAN 2012 3 2013 3 2 2014 11 3 Microsoft Corporation Copyright FUJITSU LIMITED 2012-2014 2 ... 2...5...5...5...6...7

More information

FUJITSU Security Solution 手のひら静脈認証PCログオンソフトウェア

FUJITSU Security Solution 手のひら静脈認証PCログオンソフトウェア FUJITSU Security Solution PC PalmSecure LOGONDIRECTOR PC PalmSecure LOGONDIRECTOR / ID ID ID/ PalmSecure LOGONDIRECTOR ID/ 1 / & 1 Windows PCWindowsID/PC PalmSecure LOGONDIRECTOR ID/ & 2 ID/Windows ID/

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

Part1 159 a a

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

More information

ipad iphone Windows Mac Web App : 12, * Starter Solution Excel PDF Web Web CSV, Excel, XML, ODBC ODBC / JDBC ** SQL Advanced : 20, * (HT

ipad iphone Windows Mac Web App : 12, * Starter Solution Excel PDF Web Web CSV, Excel, XML, ODBC ODBC / JDBC ** SQL Advanced : 20, * (HT NPO FileMaker Version 15 December 2016 ipad iphone Windows Mac Web App : 12,600 1 1 * Starter Solution Excel PDF Web Web CSV, Excel, XML, ODBC ODBC / JDBC ** SQL Advanced : 20,400 1 1 * (HTML/XML) AES

More information

HTML Java Tips dp8t-asm/java/tips/ Apache Tomcat Java if else f

HTML Java Tips   dp8t-asm/java/tips/ Apache Tomcat Java if else f 1 Servlet 1.1 Web Web WWW HTML CGI Common Gateway InterfaceWeb HTML Web Web CGI CGI CGI Perl C Java Applet JavaScript Web CGI HTML 1.2 Servlet Java Servlet Servlet CGI Web CGI 1 Java / Java Java CGI Servlet

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

II 1 p.1 1 Servlet 1.1 Web Web WWW HTML CGI Common Gateway Interface Web HTML Web Web CGI CGI CGI Perl, PHP C JavaScript Web CGI HTML 1.2 Servlet Java

II 1 p.1 1 Servlet 1.1 Web Web WWW HTML CGI Common Gateway Interface Web HTML Web Web CGI CGI CGI Perl, PHP C JavaScript Web CGI HTML 1.2 Servlet Java II 1 p.1 1 Servlet 1.1 Web Web WWW HTML CGI Common Gateway Interface Web HTML Web Web CGI CGI CGI Perl, PHP C JavaScript Web CGI HTML 1.2 Servlet Java Servlet Servlet CGI Web CGI Java Java JVM Java CGI

More information

Cosminexus Application Designer操作ガイド

Cosminexus Application Designer操作ガイド Cosminexus Application Designer 3020-3-M91 OS Windows Server 2003 Windows Server 2003 R2 Windows XP Windows Vista P-2443-7E74 ucosminexus Developer Standard 07-50 P-2443-7F74 ucosminexus Developer Professional

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

[1]...1 [2]...1 [3]...2 3.1...2 3.2...2 3.3...2 3.4...2 3.5 Java...2 3.6 Web...3 [4]...4 4.1...4 4.2...5 4.3...9 4.4...12 4.5 Java...15 4.6 Web...18 [

[1]...1 [2]...1 [3]...2 3.1...2 3.2...2 3.3...2 3.4...2 3.5 Java...2 3.6 Web...3 [4]...4 4.1...4 4.2...5 4.3...9 4.4...12 4.5 Java...15 4.6 Web...18 [ 20 6 30 Java Java Web Java Web Java Web SQL Java Web 3 [1]...1 [2]...1 [3]...2 3.1...2 3.2...2 3.3...2 3.4...2 3.5 Java...2 3.6 Web...3 [4]...4 4.1...4 4.2...5 4.3...9 4.4...12 4.5 Java...15 4.6 Web...18

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

Microsoft Project Project 1984 No.1 Project PMBOK (Project Management Body of Knowledge) 1 2 ( ) 3 3 Project 3 Project Standard/Professional Office Pr

Microsoft Project Project 1984 No.1 Project PMBOK (Project Management Body of Knowledge) 1 2 ( ) 3 3 Project 3 Project Standard/Professional Office Pr Microsoft Project 2015 4 Microsoft Project Project 1984 No.1 Project PMBOK (Project Management Body of Knowledge) 1 2 ( ) 3 3 Project 3 Project Standard/Professional Office Project Standard Project Professional

More information

1

1 1 INDEX P.34 P.56 P.7 P.8 P.9 25 P.2631 P.32 P.3334 2 START UP TRAINING ITIT 1 Teaching Teaching Experience Experience Story PC Learning Learning Story 1966IT 201447 196 3 2 IT OJT POINT1 POINT2 PDCA PDCA

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

Printer Driverセットアップ編

Printer Driverセットアップ編 Microsoft MS-DOS Windows Windows Server Windows Vista Internet Explorer PowerPoint Outlook Microsoft Corporation Microsoft Corporation Intel Intel Inside Itanium Pentium Intel Corporation USB-IF Universal

More information