Oracle B25-317-01 Instrukcja Użytkownika Strona 1

Przeglądaj online lub pobierz Instrukcja Użytkownika dla Oprogramowanie bazy danych Oracle B25-317-01. Oracle B25-317-01 User's Manual Instrukcja obsługi

  • Pobierz
  • Dodaj do moich podręczników
  • Drukuj

Podsumowanie treści

Strona 1 - 10g Release 2 (10.2)

Oracle Database Express Edition®2 Day Plus PHP Developer Guide 10g Release 2 (10.2) B25317-01September 2005

Strona 2

Resources1-4 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draft

Strona 3 - Contents

Beta Draft Getting Started 2-12Getting StartedThis chapter explains how to install and test

Strona 4 - 7 Loading Images

Testing the Oracle Database XE Installation2-2 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Drafthttp://www

Strona 5 - Preface

Testing the Apache InstallationBeta Draft Getting Started 2-3Testing the Apache Installation1. Start your web brow

Strona 6 - Conventions

Setting Up Zend Core for Oracle2-4 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draft # the following li

Strona 7 - Zend Core for Oracle

Setting Up Zend Core for OracleBeta Draft Getting Started 2-5Installing Zend Core for Oracle on Linux1. To extract

Strona 8

Setting Up Zend Core for Oracle2-6 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draft8.When prompted to &qu

Strona 9

Testing the Zend Core for Oracle InstallationBeta Draft Getting Started 2-74.In the PHP tab page, which is selecte

Strona 10 - Resources

Testing the Zend Core for Oracle Installation2-8 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draft

Strona 11 - Getting Started

Beta Draft Getting Connected 3-13Getting ConnectedIn this chapter you create HR application

Strona 12

Oracle Database Express Edition 2 Day Plus PHP Developer Guide, 10g Release 2 (10.2) B25317-01Copyright © 2005 Oracle. All rights reserved.Contribut

Strona 13

Building the Departments Page3-2 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draft $title = htmlentities(

Strona 14

Building the Departments PageBeta Draft Getting Connected 3-3{ border-bottom: solid #334B66 4px; font-size: 160%;

Strona 15

Connecting to the Database3-4 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta DraftConnecting to the Database1

Strona 16

Connecting to the DatabaseBeta Draft Getting Connected 3-5The oci_parse() function prepares the query for executio

Strona 17

Disconnecting from the Database3-6 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draftopen simultaneously. T

Strona 18

Beta Draft Querying Data 4-14Querying DataIn this chapter you extend the Anyco HR applicati

Strona 19 - Getting Connected

Centralizing the Database Application Logic4-2 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draftfunction d

Strona 20 - Building the Departments Page

Centralizing the Database Application LogicBeta Draft Querying Data 4-3Q The null in the fourth parameter for the

Strona 21

Writing Queries with Bind Variables4-4 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draft }}Remember the E

Strona 22 - Connecting to the Database

Writing Queries with Bind VariablesBeta Draft Querying Data 4-5 FROM departments WHERE department_id =

Strona 23 - Other Ways to Connect

Beta Draft iii Contents Preface...

Strona 24

Navigating Through Database Records4-6 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draft if (!$stid) {

Strona 25 - Querying Data

Navigating Through Database RecordsBeta Draft Querying Data 4-7Q Detecting if the HTTP request for the page was po

Strona 26

Navigating Through Database Records4-8 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draft isset($_POST

Strona 27

Navigating Through Database RecordsBeta Draft Querying Data 4-9$posturl parameter to set the HTML form's acti

Strona 28

Extending the Basic Departments Form4-10 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draft5.To navigate to

Strona 29

Extending the Basic Departments FormBeta Draft Querying Data 4-11The additional information is obtained by modifyi

Strona 30

Building the Basic Employee Form4-12 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draft AND l.country_id

Strona 31

Building the Basic Employee FormBeta Draft Querying Data 4-13require('anyco_ui.inc');session_start();con

Strona 32

Building the Basic Employee Form4-14 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draft

Strona 33

Beta Draft Updating Data 5-15Updating DataIn this chapter you extend the Anyco HR applicati

Strona 34

iv Beta DraftExtending the Basic Departments Form...

Strona 35

Extending the Basic Employee Form5-2 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draftelse { construct_em

Strona 36

Extending the Basic Employee FormBeta Draft Updating Data 5-3function construct_employees(){ $query = "SELE

Strona 37

Extending the Basic Employee Form5-4 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draft FROM employee

Strona 38

Extending the Basic Employee FormBeta Draft Updating Data 5-5OCI_FETCHSTATEMENT_BY_ROW, in the oci_fetch_all() cal

Strona 39 - Updating Data

Extending the Basic Employee Form5-6 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draft echo '<p

Strona 40

Extending the Basic Employee FormBeta Draft Updating Data 5-7 <td>Department ID</td> <td&

Strona 41

Extending the Basic Employee Form5-8 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draft $lnm = htmlentit

Strona 42

Extending the Basic Employee FormBeta Draft Updating Data 5-9Scroll to the bottom of the Employees page to view th

Strona 43

Extending the Basic Employee Form5-10 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta DraftClick Save.18. When

Strona 44

Combining Departments and EmployeesBeta Draft Updating Data 5-1121.Successfully updating the employee causes the E

Strona 45

Beta Draft v PrefaceThe Oracle Database Express Edition 2 Day Plus PHP Dev

Strona 46

Combining Departments and Employees5-12 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draft subst

Strona 47

Combining Departments and EmployeesBeta Draft Updating Data 5-13 function construct_insert_emp() { $deptid

Strona 48

Adding Error Recovery5-14 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draft <input type="submit

Strona 49

Adding Error RecoveryBeta Draft Updating Data 5-15Most production systems would display_errors configuration optio

Strona 50

Adding Error Recovery5-16 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draft $bind

Strona 51

Adding Error RecoveryBeta Draft Updating Data 5-17 AND l.country_id = c.country_id GROUP BY

Strona 52 - Adding Error Recovery

Adding Error Recovery5-18 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draft array_push($bindargs, a

Strona 53

Adding Error RecoveryBeta Draft Updating Data 5-19 handle_error('Connect Error', $err); }

Strona 54

Adding Error Recovery5-20 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draft } } }13. Edit a

Strona 55

Adding Error RecoveryBeta Draft Updating Data 5-21 handle_error("Error deleting employee $empid&qu

Strona 56

vi Beta DraftAccessibility of Links to External Web Sites in DocumentationThis documen

Strona 57

Further Error Handling5-22 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draft18.Click Next> to navigate

Strona 58

Further Error HandlingBeta Draft Updating Data 5-234.In the Employees page, click Insert new employee.5. In the In

Strona 59

Further Error Handling5-24 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draft

Strona 60 - Further Error Handling

Beta Draft Executing Stored Procedures and Functions 6-16Executing Stored Procedures and Fu

Strona 61

Using PL/SQL to Capture Business Logic6-2 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draft4.In the SQL Co

Strona 62

Using PL/SQL to Capture Business LogicBeta Draft Executing Stored Procedures and Functions 6-37.In the Oracle Data

Strona 63

Using PL/SQL to Capture Business Logic6-4 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta DraftIn the results

Strona 64

Using PL/SQL Ref Cursors to Return Result SetsBeta Draft Executing Stored Procedures and Functions 6-5 </tr&g

Strona 65

Using PL/SQL Ref Cursors to Return Result Sets6-6 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draft1.In th

Strona 66

Using PL/SQL Ref Cursors to Return Result SetsBeta Draft Executing Stored Procedures and Functions 6-7In the Resul

Strona 67

Beta Draft Introducing PHP with Oracle Database XE 1-11Introducing PHP with Oracle Database

Strona 68

Using PL/SQL Ref Cursors to Return Result Sets6-8 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draft i

Strona 69

Using PL/SQL Ref Cursors to Return Result SetsBeta Draft Executing Stored Procedures and Functions 6-97.In the Mar

Strona 70

Using PL/SQL Ref Cursors to Return Result Sets6-10 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draft

Strona 71 - Logout link

Beta Draft Loading Images 7-17Loading ImagesThis chapter shows you how to change the applic

Strona 72

Using Oracle LOBs to Store and Load Employee Images7-2 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draft5.

Strona 73 - Loading Images

Using Oracle LOBs to Store and Load Employee ImagesBeta Draft Loading Images 7-3 <th>Commission<br>

Strona 74

Using Oracle LOBs to Store and Load Employee Images7-4 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draft

Strona 75

Using Oracle LOBs to Store and Load Employee ImagesBeta Draft Loading Images 7-5 if (!$r) { $e = db_er

Strona 76

Using Oracle LOBs to Store and Load Employee Images7-6 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draft14

Strona 77

Using Oracle LOBs to Store and Load Employee ImagesBeta Draft Loading Images 7-719.In the File Upload window, brow

Strona 78

Overview of the Sample Application1-2 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draft6.Uploads and displ

Strona 79

Resizing Images7-8 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta DraftOn success, the Employees page is disp

Strona 80 - Resizing Images

Resizing ImagesBeta Draft Loading Images 7-95.In the Extension sub-tab page, expand the Zend Core Extensions tree

Strona 81

Resizing Images7-10 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draft12.In the Employees page, to insert a

Strona 82

Resizing ImagesBeta Draft Loading Images 7-1115.In the Insert New Image page, click Save:The Employees page shows

Strona 83

Resizing Images7-12 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Draft

Strona 84

Beta Draft Building Global Applications 8-18Building Global ApplicationsThis chapter discus

Strona 85 - Building Global Applications

String Manipulation8-2 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta DraftThe language and territory setting

Strona 86 - String Manipulation

Developing Locale AwarenessBeta Draft Building Global Applications 8-3Determining User's LocaleIn a global en

Strona 87 - Developing Locale Awareness

Encoding HTML Pages8-4 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta DraftEncoding HTML PagesThe encoding of

Strona 88 - Encoding HTML Pages

Presenting Data following User's Locale ConventionBeta Draft Building Global Applications 8-5This setting doe

Strona 89 - Data from the Database

ResourcesBeta Draft Introducing PHP with Oracle Database XE 1-3The code for each chapter builds on the files compl

Strona 90 - Oracle Number Formats

Presenting Data following User's Locale Convention8-6 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Dra

Strona 91 - Oracle Linguistic Sorts

Presenting Data following User's Locale ConventionBeta Draft Building Global Applications 8-7 EMPID EmpNa

Strona 92 - Oracle Error Messages

Presenting Data following User's Locale Convention8-8 Oracle Database Express Edition 2 Day Plus PHP Developer Guide Beta Dra

Strona 93

Beta Draft Index-1 IndexSymbols$HOME/public_html, 1-3AAnyCo Corptutorial application,

Strona 94

Index-2 Beta Draftprerequisites, 2-1testing availability, 2-2PPHP, 1-1creating fil

Komentarze do niniejszej Instrukcji

Brak uwag