HP Nonstop SQL/MP Programming Manual for C

Total Page:16

File Type:pdf, Size:1020Kb

HP Nonstop SQL/MP Programming Manual for C HP NonStop SQL/MP Programming Manual for C Abstract This manual documents the programming interface to HP NonStop™ SQL/MP for C and is intended for application programmers who are embedding SQL statements and directives in a C program. Product Version NonStop SQL/MP G06 and H01 Supported Release Version Updates (RVUs) This publication supports J06.03 and all subsequent J-series RVUs, H06.03 and all subse- quent H-series RVUs, G06.00 and all subsequent G-series RVUs, and D46.00 and all subse- quent D-series RVUs, until otherwise indicated by its replacement publications. Part Number Published 429847-008 August 2012 Document History Part Number Product Version Published 429847-002 NonStop SQL/MP G06 December 2003 429847-003 NonStop SQL/MP G06 December 2004 429847-004 NonStop SQL/MP G06 April 2005 429847-005 NonStop SQL/MP G06 February 2006 429847-007 NonStop SQL/MP G06 and H01 August 2010 429847-008 NonStop SQL/MP G06 and H01 August 2012 Legal Notices © Copyright 2012 Hewlett-Packard Development Company, L.P. Legal Notice Confidential computer software. Valid license from HP required for possession, use or copying. Consistent with FAR 12.211 and 12.212, Commercial Computer Software, Computer Software Documentation, and Technical Data for Commercial Items are licensed to the U.S. Government under vendor’s standard commercial license. The information contained herein is subject to change without notice. The only warranties for HP products and services are set forth in the express warranty statements accompanying such products and services. Nothing herein should be construed as constituting an additional warranty. HP shall not be liable for technical or editorial errors or omissions contained herein. Export of the information contained in this publication may require authorization from the U.S. Department of Commerce. Microsoft, Windows, and Windows NT are U.S. registered trademarks of Microsoft Corporation. Intel, Pentium, and Celeron are trademarks or registered trademarks of Intel Corporation or its subsidiaries in the United States and other countries. Java® is a registered trademark of Oracle and/or its affiliates. Motif, OSF/1, UNIX, X/Open, and the "X" device are registered trademarks, and IT DialTone and The Open Group are trademarks of The Open Group in the U.S. and other countries. Open Software Foundation, OSF, the OSF logo, OSF/1, OSF/Motif, and Motif are trademarks of the Open Software Foundation, Inc. OSF MAKES NO WARRANTY OF ANY KIND WITH REGARD TO THE OSF MATERIAL PROVIDED HEREIN, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. OSF shall not be liable for errors contained herein or for incidental consequential damages in connection with the furnishing, performance, or use of this material. © 1990, 1991, 1992, 1993 Open Software Foundation, Inc. The OSF documentation and the OSF software to which it relates are derived in part from materials supplied by the following:© 1987, 1988, 1989 Carnegie-Mellon University. © 1989, 1990, 1991 Digital Equipment Corporation. © 1985, 1988, 1989, 1990 Encore Computer Corporation. © 1988 Free Software Foundation, Inc. © 1987, 1988, 1989, 1990, 1991 Hewlett-Packard Company. © 1985, 1987, 1988, 1989, 1990, 1991, 1992 International Business Machines Corporation. © 1988, 1989 Massachusetts Institute of Technology. © 1988, 1989, 1990 Mentat Inc. © 1988 Microsoft Corporation. © 1987, 1988, 1989, 1990, 1991, 1992 SecureWare, Inc. © 1990, 1991 Siemens Nixdorf Informationssysteme AG. © 1986, 1989, 1996, 1997 Sun Microsystems, Inc. © 1989,1990, 1991 Transarc Corporation.OSF software and documentation are based in part on the Fourth Berkeley Software Distribution under license from The Regents of the University of California. OSF acknowledges the following individuals and institutions for their role in its development: Kenneth C.R.C. Arnold, Gregory S. Couch, Conrad C. Huang, Ed James, Symmetric Computer Systems, Robert Elz. © 1980, 1981, 1982, 1983, 1985, 1986, 1987, 1988, 1989 Regents of the University of California. HP NonStop SQL/MP Programming Manual for C Index Examples Figures Tables Legal Notices What’s New in This Manual xi Manual Information xi New and Changed Information xi About This Manual xv Who Should Read This Guide xv Related Manuals xv Notation Conventions xx HP Encourages Your Comments xxii 1. Introduction Advantages of Using Embedded SQL Statements 1-1 Developing a C Program 1-1 Declaring and Using Host Variables 1-2 Embedding SQL/MP Statements and Directives 1-3 Calling SQL/MP System Procedures 1-4 Compiling and Executing a Host-Language Program 1-5 Processing Errors, Warnings, and Status Information 1-5 Dynamic SQL 1-6 SQL/MP Version Management 1-7 2. Host Variables Specifying a Declare Section 2-1 Coding Host Variable Names 2-2 Using Corresponding SQL and C Data Types 2-3 Specifying Host Variables in SQL Statements 2-6 Declaring and Using Host Variables 2-7 Fixed-Length Character Data 2-7 Variable-Length Character Data 2-9 Structures 2-9 Decimal Data Types 2-11 Hewlett-Packard Company—429847-008 i Contents 2. Host Variables (continued) 2. Host Variables (continued) Fixed-Point Data Types 2-11 Date-Time and INTERVAL Data Types 2-13 Using Indicator Variables for Null Values 2-17 Inserting a Null Value 2-17 Testing For a Null Value 2-17 Retrieving Rows With Null Values 2-18 Creating Host Variables Using the INVOKE Directive 2-18 Advantages of Using an INVOKE Directive 2-19 C Structures Generated by the INVOKE Directive 2-19 Using Indicator Variables With the INVOKE Directive 2-22 Using INVOKE With SQLCI 2-24 Associating a Character Set With a Host Variable 2-24 Treatment in C Statements 2-25 VARCHAR Data Type 2-25 3. SQL/MP Statements and Directives Embedding SQL Statements 3-1 Coding Statements and Directives 3-1 Placing Statements and Directives 3-2 Finding Information 3-3 4. Data Retrieval and Modification Opening and Closing Tables and Views 4-2 Causes of SQL Error 8204 (Lost Open Error) 4-2 Recovering From SQL Error 8204 4-3 Single-Row SELECT Statement 4-4 Using a Column Value to Select Data 4-5 Using a Primary Key Value to Select Data 4-6 Multirow SELECT Statement 4-6 Simple Example 4-7 A More Complex Example 4-7 The Most Complex Example 4-7 INSERT Statement 4-8 Inserting a Single Row 4-9 Inserting a Null Value 4-9 Inserting a Timestamp Value 4-10 UPDATE Statement 4-10 Updating a Single Row 4-11 HP NonStop SQL/MP Programming Manual for C—429847-008 ii Contents 4. Data Retrieval and Modification (continued) 4. Data Retrieval and Modification (continued) Updating Multiple Rows 4-12 Updating Columns With Null Values 4-12 DELETE Statement 4-12 Deleting a Single Row 4-13 Deleting Multiple Rows 4-13 Using SQL Cursors 4-14 Steps for Using a Cursor 4-15 Process Access ID (PAID) Requirements 4-16 Cursor Position 4-16 Cursor Stability 4-17 Virtual Sequential Block Buffering (VSBB) 4-17 DECLARE CURSOR Statement 4-18 OPEN Statement 4-19 FETCH Statement 4-20 Multirow SELECT Statement 4-21 UPDATE Statement 4-22 Multirow DELETE Statement 4-23 CLOSE Statement 4-24 Using Foreign Cursors 4-24 5. SQL/MP System Procedures Guardian System Procedures 5-2 cextdecs Header File 5-2 SQL Message File 5-2 SQLCADISPLAY 5-3 SQLCAFSCODE 5-8 SQLCAGETINFOLIST 5-9 SQLCATOBUFFER 5-14 SQLGETCATALOGVERSION 5-18 SQLGETOBJECTVERSION 5-19 SQLGETSYSTEMVERSION 5-19 SQLSADISPLAY 5-20 6. Explicit Program Compilation Explicit Program Compilation 6-1 Developing a C Program in the Guardian Environment 6-5 Using TACL DEFINEs in the Guardian Environment 6-6 Specifying the SQL Pragma in the Guardian Environment 6-7 HP NonStop SQL/MP Programming Manual for C—429847-008 iii Contents 6. Explicit Program Compilation (continued) 6. Explicit Program Compilation (continued) Running the TNS C Compiler in the Guardian Environment 6-9 Running the TNS/R NMC and TNS/E CCOMP Compiler in the Guardian Environment 6-10 Binding SQL Program Files in the Guardian Environment 6-11 Running the SQL Compiler in the Guardian Environment 6-12 SQL Program File Format 6-24 SQL Compiler Listings 6-25 Developing a C Program in the OSS Environment 6-28 Using TACL DEFINEs in the OSS Environment 6-29 Using the c89 Utility in the OSS Environment 6-30 Developing a C Program in a PC Host Environment 6-33 Using CONTROL Directives 6-34 Static SQL Statements 6-34 Dynamic SQL Statements 6-36 Using Compatible Compilation Tools 6-36 C Compiler 6-36 SQL Compiler 6-36 SQL Program Files 6-37 7. Program Execution Required Access Authority 7-1 Using TACL DEFINEs 7-2 Entering the TACL RUN Command 7-3 Running a Program in the OSS Environment 7-3 Running a Program at a Low PIN 7-4 Interactive Commands 7-5 Programmatic Commands 7-5 Pathway Environment 7-6 Determining Compatibility With the SQL Executor 7-7 8. Program Invalidation and Automatic SQL Recompilation Program Invalidation 8-1 SQL Compiler Validation Functions 8-1 Causes of Program Invalidation 8-2 File-Label and Catalog Inconsistencies 8-4 Preventing Program Invalidation 8-4 Automatic SQL Recompilation 8-5 Causes of Automatic Recompilation 8-6 HP NonStop SQL/MP Programming Manual for C—429847-008 iv Contents 8. Program Invalidation and Automatic SQL Recompilation (continued) 8. Program Invalidation and Automatic SQL Recompilation (continued) Run-Time Recompilation Errors 8-9 Preventing Automatic Recompilations 8-9 9. Error and Status Reporting Using the INCLUDE STRUCTURES Directive 9-1 Generating Structures With Different Versions 9-3 Checking the Version of the C Compiler 9-3 Sharing Structures 9-3 Returning Error and Warning Information 9-4 Checking the sqlcode Variable 9-4 Using the WHENEVER Directive 9-6 Returning Information From the SQLCA Structure 9-12 Returning Performance and Statistics Information 9-13 Declaring the SQLSA Structure 9-13 Using the SQLSA Structure 9-13 10.
Recommended publications
  • Documents and Attachments 57 Chapter 7: Dbamp Stored Procedure Reference
    CData Software, Inc. DBAmp SQL Server Integration with Salesforce.com Version 5.1.6 Copyright © 2021 CData Software, Inc. All rights reserved. Table of Contents Acknowledgments ........................................................................... 7 Chapter 1: Installation/Upgrading ................................................. 8 Upgrading an existing installation ......................................................... 8 Prerequistes ....................................................................................... 9 Running the DBAmp installation file...................................................... 9 Configure the DBAmp provider options ................................................. 9 Connecting DBAmp to SQL Server ...................................................... 10 Verifying the linked server ................................................................. 11 Install the DBAmp Stored Procedures ................................................. 11 Running the DBAmp Configuration Program........................................ 11 Setting up the DBAmp Work Directory ................................................ 12 Enabling xp_cmdshell for DBAmp ....................................................... 13 Pointing DBAmp to your Salesforce Sandbox Instance ......................... 13 Chapter 2: Using DBAMP as a Linked Server ................................ 14 Four Part Object Names .................................................................... 14 SQL versus SOQL .............................................................................
    [Show full text]
  • Cobol/Cobol Database Interface.Htm Copyright © Tutorialspoint.Com
    CCOOBBOOLL -- DDAATTAABBAASSEE IINNTTEERRFFAACCEE http://www.tutorialspoint.com/cobol/cobol_database_interface.htm Copyright © tutorialspoint.com As of now, we have learnt the use of files in COBOL. Now, we will discuss how a COBOL program interacts with DB2. It involves the following terms: Embedded SQL DB2 Application Programming Host Variables SQLCA SQL Queries Cursors Embedded SQL Embedded SQL statements are used in COBOL programs to perform standard SQL operations. Embedded SQL statements are preprocessed by SQL processor before the application program is compiled. COBOL is known as the Host Language. COBOL-DB2 applications are those applications that include both COBOL and DB2. Embedded SQL statements work like normal SQL statements with some minor changes. For example, that output of a query is directed to a predefined set of variables which are referred as Host Variables. An additional INTO clause is placed in the SELECT statement. DB2 Application Programming Following are rules to be followed while coding a COBOL-DB2 program: All the SQL statements must be delimited between EXEC SQL and END-EXEC. SQL statements must be coded in Area B. All the tables that are used in a program must be declared in the Working-Storage Section. This is done by using the INCLUDE statement. All SQL statements other than INCLUDE and DECLARE TABLE must appear in the Procedure Division. Host Variables Host variables are used for receiving data from a table or inserting data in a table. Host variables must be declared for all values that are to be passed between the program and the DB2. They are declared in the Working-Storage Section.
    [Show full text]
  • Declare Syntax in Pl Sql
    Declare Syntax In Pl Sql NickieIs Pierre perennates desecrated some or constant stunner afterafter pomiferousprojectional Sydney Alberto appreciatingconfabulate mourningly.so Jewishly? Abused Gordan masons, his hakim barged fasts reparably. Encircled It could write utility it an sql in the original session state in turn off timing command line if it needs to learn about oracle Berkeley electronic form, and os commands, declare syntax in pl sql syntax shows how odi can execute. To select in response times when it declares an assignment statement to change each actual parameter can be open in a declarative part. Sql functions run on a timing vulnerabilities when running oracle pl sql syntax shows how use? To learn how to performance overhead of an object changes made to explain plan chooses by create applications. Have an archaic law that declare subprograms, declaring variables declared collection of declarations and return result set cookies that references or distinct or script? Plus statements that column, it is not oracle pl sql syntax shows no errors have a nested blocks or a recordset. Always nice the highest purity level line a subprogram allows. The script creates the Oracle system parameters, though reception can be changed by the inactive program. If necessary to declare that are declared in trailing spaces cause a declarative part at precompile time. This syntax defines cursors declared in oracle pl sql. Run on that subprograms as columns and you use a variable must be recompiled at any syntax defines cursors. All procedures move forward references to it is executed at runtime engine runs for this frees memory than store.
    [Show full text]
  • An Array-Oriented Language with Static Rank Polymorphism
    An array-oriented language with static rank polymorphism Justin Slepak, Olin Shivers, and Panagiotis Manolios Northeastern University fjrslepak,shivers,[email protected] Abstract. The array-computational model pioneered by Iverson's lan- guages APL and J offers a simple and expressive solution to the \von Neumann bottleneck." It includes a form of rank, or dimensional, poly- morphism, which renders much of a program's control structure im- plicit by lifting base operators to higher-dimensional array structures. We present the first formal semantics for this model, along with the first static type system that captures the full power of the core language. The formal dynamic semantics of our core language, Remora, illuminates several of the murkier corners of the model. This allows us to resolve some of the model's ad hoc elements in more general, regular ways. Among these, we can generalise the model from SIMD to MIMD computations, by extending the semantics to permit functions to be lifted to higher- dimensional arrays in the same way as their arguments. Our static semantics, a dependent type system of carefully restricted power, is capable of describing array computations whose dimensions cannot be determined statically. The type-checking problem is decidable and the type system is accompanied by the usual soundness theorems. Our type system's principal contribution is that it serves to extract the implicit control structure that provides so much of the language's expres- sive power, making this structure explicitly apparent at compile time. 1 The Promise of Rank Polymorphism Behind every interesting programming language is an interesting model of com- putation.
    [Show full text]
  • 2020-2021 Course Catalog
    Unlimited Opportunities • Career Training/Continuing Education – Page 4 • Personal Enrichment – Page 28 • High School Equivalency – Page 42 • Other Services – Page 46 • Life Long Learning I found the tools and resources to help me transition from my current career to construction management through an Eastern Suffolk BOCES Adult Education Blueprint Reading course. The program provided networking opportunities which led me to my new job. 2020-2021 COURSE CATALOG SHARE THIS CATALOG with friends and family Register online at: www.esboces.org/AEV Adult Education Did You Know... • Adult Education offers over 50 Career Training, Licensing and Certification programs and 30 Personal Enrichment classes. • Financial aid is available for our Cosmetology and Practical Nursing programs. • We offer national certifications for Electric, Plumbing and HVAC through the National Center for Construction Education and Research. • Labor Specialists and Vocational Advisors are available to assist students with planning their careers, registration and arranging day and evening tours. • Continuing Education classes are available through our on-line partners. The Center for Legal Studies offers 15 classes designed for beginners as well as advanced legal workers. In addition, they provide 6 test preparation courses including SAT®, GMAT® and LSAT®. UGotClass offers over 40 classes in Business, Management, Education and more. • Internship opportunities are available in many of our classes to assist the students to build skills towards employment. Do you know what our students are saying about us? “New York State “Great teacher. Answered Process Server is all questions and taught a very lucrative “I like how the Certified Microsoft Excel in a way “I took Introduction to side business.
    [Show full text]
  • Operation in Xql______34 4.5 Well-Formedness Rules of Xql ______36 4.6 Summary ______42
    Translation of OCL Invariants into SQL:99 Integrity Constraints Master Thesis Submitted by: Veronica N. Tedjasukmana [email protected] Information and Media Technologies Matriculation Number: 29039 Supervised by: Prof. Dr. Ralf MÖLLER STS - TUHH Prof. Dr. Helmut WEBERPALS Institut für Rechnertechnologie – TUHH M.Sc. Miguel GARCIA STS - TUHH Hamburg, Germany 31 August 2006 Declaration I declare that: this work has been prepared by myself, all literally or content-related quotations from other sources are clearly pointed out, and no other sources or aids than the ones that are declared are used. Hamburg, 31 August 2006 Veronica N. Tedjasukmana i Table of Contents Declaration __________________________________________________________________ i Table of Contents _____________________________________________________________ ii 1 Introduction ______________________________________________________________ 1 1.1 Motivation _____________________________________________________________ 1 1.2 Objective ______________________________________________________________ 2 1.3 Structure of the Work ____________________________________________________ 2 2 Constraint Languages ______________________________________________________ 3 2.1 Defining Constraint in OCL _______________________________________________ 3 2.1.1 Types of Constraints ________________________________________________ 4 2.2 Defining Constraints in Database ___________________________________________ 4 2.3 Comparison of Constraint Language_________________________________________
    [Show full text]
  • Heritage Ascential Software Portfolio, Now Available in Passport Advantage, Delivers Trustable Information for Enterprise Initiatives
    Software Announcement July 18, 2006 Heritage Ascential software portfolio, now available in Passport Advantage, delivers trustable information for enterprise initiatives Overview structures ranging from simple to highly complex. It manages data At a glance With the 2005 acquisition of arriving in real time as well as data Ascential Software Corporation, received on a periodic or scheduled IBM software products acquired IBM added a suite of offerings to its basis and enables companies to from Ascential Software information management software solve large-scale business problems Corporation are now available portfolio that helps you profile, through high-performance through IBM Passport Advantage cleanse, and transform any data processing of massive data volumes. under new program numbers and across the enterprise in support of A WebSphere DataStage Enterprise a new, simplified licensing model. strategic business initiatives such as Edition license grants entitlement to You can now license the following business intelligence, master data media for both WebSphere programs for distributed platforms: DataStage Server and WebSphere management, infrastructure • consolidation, and data governance. DataStage Enterprise Edition. Core product: WebSphere The heritage Ascential programs in Datastore Enterprise Edition, this announcement are now WebSphere RTI enables WebSphere WebSphere QualityStage available through Passport DataStage jobs to participate in a Enterprise Edition, WebSphere Advantage under a new, service-oriented architecture (SOA)
    [Show full text]
  • SQL Server Express: Setting up for Unistream User Guide 3/17
    Headquarters Unitronics (1989) (R"G). Unitronics Building, Airport City P.O.B. 300, Ben Gurion Airport, Israel 70100 Tel: + 972 (3) 977 8888 Fax: + 972 (3) 977 8877 SQL Server Express: Setting up for UniStream User Guide 3/17 Contents SQL Server Express: Setting up for UniStream ...................................................... 1 Overview ....................................................................................................... 1 Supported Controllers ...................................................................................... 1 First-time Installation & Configuration ................................................................. 2 Download ...................................................................................................... 2 Installing SQL Server ...................................................................................... 3 Setting up the Local Database .......................................................................... 5 Configuring SQL Server ................................................................................... 6 Activating the SQL Server Browser. ................................................................ 6 Enable TCP/IP, Assign Port ............................................................................ 7 Create a new Login ....................................................................................... 8 SQL Server Express—Existing Installation ........................................................... 10 Enable TCP/IP, Assign Port
    [Show full text]
  • Cohesity Dataplatform Protecting Individual MS SQL Databases Solution Guide
    Cohesity DataPlatform Protecting Individual MS SQL Databases Solution Guide Abstract This solution guide outlines the workflow for creating backups with Microsoft SQL Server databases and Cohesity Data Platform. Table of Contents About this Guide..................................................................................................................................................................2 Intended Audience..............................................................................................................................................2 Configuration Overview.....................................................................................................................................................2 Feature Overview.................................................................................................................................................................2 Installing Cohesity Windows Agent..............................................................................................................................2 Downloading Cohesity Agent.........................................................................................................................2 Select Coheisty Windows Agent Type.........................................................................................................3 Install the Cohesity Agent.................................................................................................................................3 Cohesity Agent Setup........................................................................................................................................4
    [Show full text]
  • Developing Embedded SQL Applications
    IBM DB2 10.1 for Linux, UNIX, and Windows Developing Embedded SQL Applications SC27-3874-00 IBM DB2 10.1 for Linux, UNIX, and Windows Developing Embedded SQL Applications SC27-3874-00 Note Before using this information and the product it supports, read the general information under Appendix B, “Notices,” on page 209. Edition Notice This document contains proprietary information of IBM. It is provided under a license agreement and is protected by copyright law. The information contained in this publication does not include any product warranties, and any statements provided in this manual should not be interpreted as such. You can order IBM publications online or through your local IBM representative. v To order publications online, go to the IBM Publications Center at http://www.ibm.com/shop/publications/ order v To find your local IBM representative, go to the IBM Directory of Worldwide Contacts at http://www.ibm.com/ planetwide/ To order DB2 publications from DB2 Marketing and Sales in the United States or Canada, call 1-800-IBM-4YOU (426-4968). When you send information to IBM, you grant IBM a nonexclusive right to use or distribute the information in any way it believes appropriate without incurring any obligation to you. © Copyright IBM Corporation 1993, 2012. US Government Users Restricted Rights – Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Contents Chapter 1. Introduction to embedded Include files for COBOL embedded SQL SQL................1 applications .............29 Embedding SQL statements
    [Show full text]
  • JSON and PL/SQL: a Match Made in Database
    JSON and PL/SQL: A Match Made in Database Copyright © 2018 Oracle and/or its affiliates. All rights reserved. | 1 Resources for Oracle Database Developers • Official homes of SQL and PL/SQL - oracle.com/sql oracle.com/plsql • Dev Gym: quizzes, workouts and classes - devgym.oracle.com • Ask Tom - asktom.oracle.com – 'nuff said (+ new: Office Hours!) • LiveSQL - livesql.oracle.com – script repository and 24/7 18c database • SQL-PL/SQL discussion forum on OTN https://community.oracle.com/community/database/developer-tools/sql_and_pl_sql • PL/SQL and EBR blog by Bryn Llewellyn - https://blogs.oracle.com/plsql-and-ebr • Oracle Learning Library - oracle.com/oll • oracle-base.com - great content from Tim Hall • oracle-developer.net - great content from Adrian Billington Copyright © 2018 Oracle and/or its affiliates. All rights reserved. | Some Questions for You • Do you write code in the database? • Do you write UI code as well? • Do you work with UI developers? • Do you fight with UI developers? • Who has the ear of management, the database developers or the UI developers? Copyright © 2018 Oracle and/or its affiliates. All rights reserved. | What is JSON? • JavaScript Object Notation – A "lightweight", readable data interchange format. In other words, NOT XML. Squiggles instead of angle brackets. WAY better! J – Language independent, but widely used by UI developers, especially those working in JavaScript. • Built on two structures: – Name-value pair collections – Order list of values: aka, arrays Copyright © 2018 Oracle and/or its affiliates. All rights reserved. | What is JSON? (continued) • JSON object - unordered set of name-value pairs • JSON array - ordered collection of values.
    [Show full text]
  • Oracle HTML DB User's Guide Describes How to Use the Oracle HTML DB Development Environment to Build and Deploy Database-Centric Web Applications
    Oracle® HTML DB User’s Guide Release 1.6 Part No. B14303-02 March 2005 Oracle HTML DB User’s Guide, Release 1.6 Part No. B14303-02 Copyright © 2003, 2005, Oracle. All rights reserved. Primary Author: Terri Winters Contributors: Carl Backstrom, Christina Cho, Michael Hichwa Joel Kallman, Sharon Kennedy, Syme Kutz, Sergio Leunissen, Raj Mattamal, Tyler Muth, Kris Rice, Marc Sewtz, Scott Spadafore, Scott Spendolini, and Jason Straub The Programs (which include both the software and documentation) contain proprietary information; they are provided under a license agreement containing restrictions on use and disclosure and are also protected by copyright, patent, and other intellectual and industrial property laws. Reverse engineering, disassembly, or decompilation of the Programs, except to the extent required to obtain interoperability with other independently created software or as specified by law, is prohibited. The information contained in this document is subject to change without notice. If you find any problems in the documentation, please report them to us in writing. This document is not warranted to be error-free. Except as may be expressly permitted in your license agreement for these Programs, no part of these Programs may be reproduced or transmitted in any form or by any means, electronic or mechanical, for any purpose. If the Programs are delivered to the United States Government or anyone licensing or using the Programs on behalf of the United States Government, the following notice is applicable: U.S. GOVERNMENT RIGHTS Programs, software, databases, and related documentation and technical data delivered to U.S. Government customers are "commercial computer software" or "commercial technical data" pursuant to the applicable Federal Acquisition Regulation and agency-specific supplemental regulations.
    [Show full text]